﻿/* 头部 */
.Header-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 214px;
    height: 100%;
    z-index: 99999;
    /*box-shadow: 0px 10px 7px #ccc;*/
}
.Header-wrapper:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #ddd;
}
.Header-container{
    width: 100%;
    text-align: center;
}
.Header-logo{
    width: 100%;
    display: block;
    margin-top: 40px;
    user-select: none;
    position: relative;
    z-index: 11;
}
.Header-logo img{
    width: auto;
}
.Header-logopc{
    display: block;
}
.Header-logomb{
    display: none;
}
.Header-navbar{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding-top: 220px;
    transition: box-shadow .5s ease;
}
.Header-navbar.onhover{
    box-shadow: 6px 0px 10px 0px rgba(0, 0, 0, .1);
}
body.winter .Header-navbar{
    display: block !important;
}
.Header-navbar ul li{
    width: 100%;
    position: relative;
}
.Header-navbar ul li:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #ddd;
    z-index: 5;
}
.Header-menu{
    width: 100%;
    display: block;
    font-size: 16px;
    color: #333;
    background: #fff;
    z-index: 4;
    position: relative;
    height: 48px;
    line-height: 48px;
    transition: all .5s ease;
}
.Header-menu:before{
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: rgba(222, 186, 114, 1);
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .5s ease;
}
.Header-menu:after{
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: #deba72;
    top: 0;
    right: 0;
    z-index: 6;
    transition: all .5s ease;
    opacity: 0;
}

.Header-navbar ul li.ontrue .Header-menu, .Header-navbar ul li:hover .Header-menu{
    color: #fff;
}
.Header-navbar ul li.ontrue .Header-menu:before, .Header-navbar ul li:hover .Header-menu:before{
    width: 100%;
}
.Header-navbar ul li.ontrue .Header-menu:after, .Header-navbar ul li:hover .Header-menu:after{
    opacity: 1;
    transition-delay: 500ms;
}
.Header-sunclick{
    display: none;
}

/* 侧边导航 */
.Header-sunmenu{
    position: absolute;
    width: 200px;
    right: 0px;
    background: #fff;
    height: 2000px;
    z-index: -1;
    padding-top: 600px;
    margin-top: -650px;
    transition: all .4s ease;
    opacity: 0;
}
.Header-navbar ul li.onlihover .Header-sunmenu{
    opacity: 1;
}
.Header-sunmenu a{
    display: block;
    width: 100%;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    color: #666;
    transition: all .4s ease;
    padding-left: 28px;
    text-align: left;
}
.Header-sunmenu a i{
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 7px;
    background: url('../images/arrB.png') no-repeat center;
    margin: -3px 12px 0 0;
    transition: all .4s ease;
}
.Header-sunmenu a.ontrue, .Header-sunmenu a:hover{
    color: #deba72;
}
.Header-sunmenu a.ontrue i, .Header-sunmenu a:hover i{
    background: url('../images/arrC.png') no-repeat center;
}
.Header-navbar ul li.onlihover .Header-sunmenu{
    right: -184px;
}
.Header-lang{
    display: block;
    width: 100%;
    font-size: 16px;
    color: #666;
    padding-left: 55px;
    text-align: left;
    position: absolute;
    z-index: 4;
    bottom: 48px;
    left: 0;
    transition: all .4s ease;
}
.Header-lang i{
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('../images/lang.png') no-repeat;
    vertical-align: middle;
    margin: -4px 6px 0 0;
}
.Header-lang:hover{
    color: #c8a063;
}
.Header-langmb{
    display: none;
}
.busiscroll-words p a{
    color: #c8a063;
    text-decoration: underline;
}
/* 汉堡键 */
.Header-navclick{height: 60px;cursor: pointer;float: right;user-select: none;display: none;}
.Header-navclick span{width: 32px;height: 3px;background: #4b4948;display: block;position: relative;margin-top: 28.5px;transition: all .2s linear;}
.Header-navclick span:before,.Header-navclick span:after{content: "";position: absolute;height: 3px;background: #4b4948;display: block;left: 0;width: 100%;transition: all .2s linear;}
.Header-navclick span:before{top: -9px;}
.Header-navclick span:after{top: 9px;}
.Header-navclick.ontrue span{-moz-animation: buttonAnimation 0.3s ease forwards;-webkit-animation: buttonAnimation 0.3s ease forwards;animation: buttonAnimation 0.3s ease forwards;}
.Header-navclick.ontrue span:before{-moz-animation: buttonAnimationBefore 0.3s ease forwards;-webkit-animation: buttonAnimationBefore 0.3s ease forwards;animation: buttonAnimationBefore 0.3s ease forwards; }
.Header-navclick.ontrue span:after{-moz-animation: buttonAnimationAfter 0.3s ease forwards;-webkit-animation: buttonAnimationAfter 0.3s ease forwards;animation: buttonAnimationAfter 0.3s ease forwards;}
@-moz-keyframes buttonAnimationBefore {0% {-moz-transform: translateY(0px) rotate(0);transform: translateY(0px) rotate(0);}50% {-moz-transform: translateY(9px) rotate(0);transform: translateY(9px) rotate(0);}100% {-moz-transform: translateY(9px) rotate(45deg);transform: translateY(9px) rotate(45deg);}}
@-webkit-keyframes buttonAnimationBefore {0% {-webkit-transform: translateY(0px) rotate(0);transform: translateY(0px) rotate(0);}50% {-webkit-transform: translateY(9px) rotate(0);transform: translateY(9px) rotate(0);}100% {-webkit-transform: translateY(9px) rotate(45deg);transform: translateY(9px) rotate(45deg);}}
@keyframes buttonAnimationBefore {0% {-moz-transform: translateY(0px) rotate(0);-ms-transform: translateY(0px) rotate(0);-webkit-transform: translateY(0px) rotate(0);transform: translateY(0px) rotate(0);}50% {-moz-transform: translateY(9px) rotate(0);-ms-transform: translateY(9px) rotate(0);-webkit-transform: translateY(9px) rotate(0);transform: translateY(9px) rotate(0);}100% {-moz-transform: translateY(9px) rotate(45deg);-ms-transform: translateY(9px) rotate(45deg);-webkit-transform: translateY(9px) rotate(45deg);transform: translateY(9px) rotate(45deg);}}
@-moz-keyframes buttonAnimationAfter {0% {-moz-transform: translateY(0) rotate(0);transform: translateY(0) rotate(0);}50% {-moz-transform: translateY(-9px) rotate(0);transform: translateY(-9px) rotate(0);}100% {-moz-transform: translateY(-9px) rotate(-45deg);transform: translateY(-9px) rotate(-45deg);}}
@-webkit-keyframes buttonAnimationAfter {0% {-webkit-transform: translateY(0) rotate(0);transform: translateY(0) rotate(0);}50% {-webkit-transform: translateY(-9px) rotate(0);transform: translateY(-9px) rotate(0);}100% {-webkit-transform: translateY(-9px) rotate(-45deg);transform: translateY(-9px) rotate(-45deg);}}
@keyframes buttonAnimationAfter {0% {-moz-transform: translateY(0) rotate(0);-ms-transform: translateY(0) rotate(0);-webkit-transform: translateY(0) rotate(0);transform: translateY(0) rotate(0);}50% {-moz-transform: translateY(-9px) rotate(0);-ms-transform: translateY(-9px) rotate(0);-webkit-transform: translateY(-9px) rotate(0);transform: translateY(-9px) rotate(0);}100% {-moz-transform: translateY(-9px) rotate(-45deg);-ms-transform: translateY(-9px) rotate(-45deg);-webkit-transform: translateY(-9px) rotate(-45deg);transform: translateY(-9px) rotate(-45deg);}}
@-moz-keyframes buttonAnimation {0% {background: transparent;}50% {background: rgba(255, 255, 255, 0);}100% {background: rgba(255, 255, 255, 0);}}
@-webkit-keyframes buttonAnimation {0% {background: transparent;}50% {background: rgba(255, 255, 255, 0);}100% {background: rgba(255, 255, 255, 0);}}
@keyframes buttonAnimation {0% {background: transparent; }50% {background: rgba(255, 255, 255, 0);}100% {background: rgba(255, 255, 255, 0);}}

.head_code{
    position: absolute;
    bottom:100px;
    left:0;
    width: 100%;
    text-align: center;
    z-index: 9;
}

@media(max-width: 1600px){
    .Header-wrapper{
        width: 154px;
    }
    .Header-logo img {
        width: 122px;
    }
    .Header-navbar{
        padding-top:200px;
    }
    .Header-menu, .Header-menu span {
        text-align: left;
        padding-left: 28px;
    }
    .Header-sunmenu {
        position: absolute;
        width:184px;
    }
    .Header-sunmenu a {
        padding-left: 26px;
    }
    .head_code{
        bottom:50px;
    }
}
@media(max-width: 1440px){
    .Header-sunmenu {
        width: 164px;
    }
}
@media(max-width: 1360px){
    .Header-navbar ul li:hover .Header-sunmenu{
        left:150px;
    }
    .Header-sunmenu {
        position: absolute;
        width: 150px;
        left: 0px;
    }   
    .Header-sunmenu a {
        padding-left: 24px;
    } 
}
@media(max-width: 1024px){
    
}

@media(max-width: 768px){
    .head_code{
        display:none;
    }
}
@media(max-width: 767px){
    
}



/*main*/
.Container-wrapper {
    width: 100%;
    padding-left: 214px;
    overflow: hidden;
}
/*banner*/
.banner{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.banner-img{
    width: 100%;
}
.banner-img img{
    width: 100%;
    object-fit: cover;
}
.banner-pcimg{display: block;}
.banner-mbimg{
    display: none;
    min-height: 340px;
}
.banner .swiper-slide {overflow: hidden;position: relative;}
.banner .swiper-slide img {
    transform: matrix(1.0, 0, 0, 1.0, 0, 0);
    transition: all 0.4s ease 1.2s;
}
.banner .swiper-slide-active img {
    transition-delay: 0.4s !important;
    transform: matrix(1.1, 0, 0, 1.1, 0, 0);
    transition: all 5s ease;
}

.banner_text{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 248px;
    margin-top: -168px;
    left: 0%;
    top: 60%;
    text-align: center;
    color: #fff;
    text-shadow:0 0 10px #333;
    padding-right:130px;
}
.banner_text h3{
    font-size: 100px;
    line-height:1em;
    margin-bottom: 30px;
    position: relative;
} 
.banner_text h3:before{
    content: '';
    width: 550px;
    height: 16px;
    background: #c8a063;
    position: absolute;
    right: -30px;
    bottom: 8px;
    z-index: -1;
} 
.banner_text p{
    font-size: 24px;    
    line-height:2em;
}
.banner_text p span{
    font-size: 36px; 
    line-height:1em; 
    /*display: block;  */
    margin-top: 20px;
}

@keyframes banLt{0%{transform: translateX(-280px);opacity: 0;}100%{transform: translateX(0);opacity: 1;}}
@keyframes banRt{0%{transform: translateX(280px);opacity: 0;}100%{transform: translateX(0);opacity: 1;}}
@keyframes banPs{0%{transform: scale(.4);opacity: 0;}100%{transform: scale(1);opacity: 1;}}
@keyframes banLine{0%{width: 0;}100%{width: 100%;}}
.banner .swiper-slide-active .banner_text{
    animation: banPs 1.4s ease both;
}
#swiper-container1 .swiper-pagination{
    bottom: 40px;
}
#swiper-container1 .swiper-pagination span.swiper-pagination-bullet{
    outline: none;
    position: relative;
    width: 10px;
    height: 10px;
    background:#fff;
    margin:0 7px;
    opacity: 1;
} 
#swiper-container1 .swiper-pagination span.swiper-pagination-bullet:before{
    content:'';
    position: absolute;
    left:-3px;
    top:-3px;
    width: 14px;
    height: 14px;
    border:1px solid #fff;
    border-radius: 50%;
    opacity: 0;
}
#swiper-container1 .swiper-pagination span.swiper-pagination-bullet-active{

}
#swiper-container1 .swiper-pagination span.swiper-pagination-bullet-active:before{
    opacity: 1;
}


@media(max-width: 1600px){
    .Container-wrapper {
        padding-left: 154px;
    }
    .banner_text h3{
        font-size: 70px;
    }
    .banner_text h3:before{
        width: 350px;
    }
    .banner_text p{
        font-size: 36px;
    }
    .banner_text p span{
        font-size: 30px;
    }
}
@media(max-width: 1440px){
    .banner_text h3{
        font-size: 56px;
    }
    .banner_text h3:before{
        width: 220px;
        height: 12px;
        right: 0;
    }
    .banner_text p{
        font-size: 30px;
    }
    .banner_text p span{
        font-size: 24px;
    }
}
@media(max-width: 1360px){
    .banner_text{
        padding-right: 80px;
    }
    .banner_text h3{
        font-size: 36px;
    }
    .banner_text p{
        font-size: 24px;
    }
    .banner_text p span{
        font-size: 20px;
    }
    .banner_text h3:before{
        display: none;
    }
}
@media(max-width: 1024px){
    .banner_text{
        padding-right: 50px;
    }   
    #swiper-container1 .swiper-pagination{
        bottom:20px;
    } 
}
@media(max-width: 768px){
    #swiper-container1 .swiper-pagination{
        bottom:10px;
    } 
    .banner_text {
        padding: 0 2%;
        top:55%;
        height: 150px;
        margin-top:-75px;
    }
    .banner_text h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }   
    .banner_text p {
        font-size: 18px;
    } 
    .banner_text p span{
        font-size: 14px;
        margin-top: 10px;
        line-height:1.6em;
    } 
    .banner-pcimg{
        display:none;
    }
    .banner-mbimg{
        display:block;
    }
}
@media(max-width: 767px){
    #swiper-container1 .swiper-pagination{
        bottom:5px;
    }
    .banner_text {
        padding: 0 2%;
        top:55%;
        height: 100px;
        margin-top:-50px;
    }
    .banner_text h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }   
    .banner_text p {
        font-size: 16px;
    } 
}



.about{
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 110px 0 92px;
}
.about-contain{
    max-width: 1275px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
}
.about-zm{
    position: absolute;
    width: 800px;
    left: 50%;
    margin-left: -400px;
    top: 60px;
    z-index: 2;
    text-align: center;
}
.about-zm h6{
    font-size: 100px;
    color: #551526;
    opacity: 0.08;
    font-family: 'DinM';
    position: relative;
    transition: all 2s ease 1s;
    transform: scale(0);
    line-height: normal;
    text-transform: uppercase;
}
.ontrue .about-zm h6{transform: scale(1);}
.ontrue .about-zm:before, .ontrue .about-zm:after{opacity: 1;}

.about-tit{width: 100%;text-align: center;}
.about-tit h6{
    font-size: 36px;
    color: #333;
    display: inline-block;
    font-weight: normal;
    line-height: 1em;
}
.about-tit .index_about_text{
    font-size: 15px;
    color: #999;
    line-height: 36px;
    margin-top: 55px;
}
.about-tit .index_about_text p{

}
.about-num{width: 100%;overflow: hidden;margin-top: 62px;}
.about-num ul{
    padding:0 10%;
}
.about-num ul li{
    width: 25%;
    text-align: center;
    float: left;
    padding:0 2.5%;
}
.about-num ul li h6{
    font-size: 48px;
    color: #deba72;
    line-height:1em;
}
.about-num ul li p{
    font-size: 18px;
    color: #666;
    margin-top: 12px;
    font-weight: 200;
    line-height: 1em;
}
.about-num ul li h6 i{
    display: inline-block;
 /*   width: 36px;*/
    height: 18px;
    vertical-align: top;
    font-size: 18px;
    color: #888;
    font-weight: 200;
    font-style: normal;
    line-height: normal;
/*    margin: 10px 0 0 8px;*/
    line-height:1em;
    text-align:left;
    text-indent: 5px;
}


@media(max-width: 1600px){
    .about{
        padding:105px 0 90px;
    }
    .about-contain{
        width: 92%;
    }
    .about-zm h6{
        font-size: 88px;
    }
    .about-tit h6{
        font-size: 32px;
    }
    .about-num ul li h6{
        font-size: 42px;
    }
}
@media(max-width: 1440px){
    .about{
        padding:95px 0 90px;
    }
    .about-zm h6 {
        font-size: 74px;
    }    
}
@media(max-width: 1360px){

}
@media(max-width: 1260px){
    .about {
        padding: 90px 0 50px;
    }
    .about-zm h6{
        font-size: 62px;
    }
    .about-tit .index_about_text{
        margin-top: 30px;
    }
}
@media(max-width: 1024px){
    .about-num{
        margin-top: 50px;
    }
    .about-num ul li h6{
        font-size: 32px;
    }
    .about-num ul li h6 i{
        font-size: 16px;
    }
    .about-num ul li p{
        font-size: 16px;
    }
}
@media(max-width: 768px){
    .about-tit h6{
        font-size: 28px;
    }    
}
@media(max-width: 767px){
    .about{
        padding: 90px 0 30px;
    }
    .about-tit h6{
        font-size: 26px;
    }
    .about-zm h6 {
        font-size: 32px;
    }
    .about-tit .index_about_text {
        margin-top: 15px;
        line-height:2em;
        font-size: 14px;
    }
    .about-num {
        margin-top: 30px;
    }
    .about-num ul{
        padding:0;
    }
    .about-num ul li{
        padding:0 5px;
    }
    .about-num ul li h6 {
        font-size: 24px;
    }
    .about-num ul li h6 i {
        font-size: 14px;
    }
    .about-num ul li p{
        font-size: 14px;
    }

}


#swiper-container2{
    margin-top: 60px;
}
#swiper-container2 .swiper-slide{
    border:1px solid #e5e5e5;
    overflow: hidden;
}
#swiper-container2 .swiper-slide img{
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -ms-filter: grayscale(1);
    transition: all 0.6s ease-out;
}
#swiper-container2 .swiper-slide:hover img{
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    -ms-filter: grayscale(0);  
    transition: all 0.6s;      
    transform: scale(1.05);
}
/*#swiper-container2 h3{*/
/*    font-size: 16px;*/
/*    color: #666;*/
/*    text-align: center;*/
/*    font-weight: normal;*/
/*    background: #fff;*/
/*    display: none;*/
/*}*/
.index_partner_content{
    padding:0 45px;    
    position: relative;
}
.index_partner_content .swiper-button-prev{
    left: 0;
    width: 35px;
    height: 60px;
    background: url(../images/left4.png) no-repeat center #ccc;
}
.index_partner_content .swiper-button-prev:hover{
    background: url(../images/left4.png) no-repeat center #c8a063;
}
.index_partner_content .swiper-button-next{
    right:0;
    width: 35px;
    height: 60px;
    background: url(../images/left4.png) no-repeat center #ccc;
    transform: rotate(-180deg);
}
.index_partner_content .swiper-button-next:hover{
    background: url(../images/left4.png) no-repeat center #c8a063;
}
.swiper-button-prev,.swiper-button-next{
    outline: none;
}

@media(max-width: 1259px){
    .index_partner_content{
        padding:0 0px;    
    }
    .index_partner_content .swiper-button-prev,.index_partner_content .swiper-button-next{
        display:none;
    }
}
@media(max-width: 1024px){
    
}
@media(max-width: 768px){
    #swiper-container2{
        margin-top: 30px;
    }    
}
@media(max-width: 640px){
    
}

.runpic-box {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: none;
}

.runpic-words {
    position: absolute;
    width: 90%;
    bottom: 100px;
    left: 10%;
/*    margin-left: -630px;*/
    z-index: 3;
}

.runpic-words ul li {
    width: 20%;
    float: left;
    text-align: center;
}

.runpic-words ul li img {
    display: block;
    margin: 0 auto;
    transition: all 1s;
}

.runpic-words ul li h6 {
    font-size: 20px;
    color: #fff;
    font-weight: normal;
    margin-bottom:20px;
}

.runpic-words ul li p {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    margin-top: 10px;
    font-family: 'SOURCEHANSANSCN-LIGHT_0';
}

.runpic-words ul li:hover img {
    transform: rotateY(180deg);
}

.runpic-line-null {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .1);
    left: 0;
    bottom: 220px;
    z-index: 4;
}

.runpic-line {
    position: absolute;
    width: 10%;
    height: 1px;
    background-color: #b6b5aa;
    left: 0;
    bottom: 220px;
    z-index: 4;
    transition: all 1s;
}


.runpic-pic {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 820px;
    background-color: #b6b5aa;
}

.runpic-pic ul li {
    width: 100%;
    height: 818px;
    display: none;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative;
    background-size: cover!important;
    position: absolute;
    top: 0%;
    left: 0%;
    text-align:center;
}
.runpic-pic ul li h5{
    font-size: 36px;
    color: #fff;
    font-weight: normal;
    line-height:1em;
}
.runpic-pic ul li p{
    font-size: 15px;
    color: #e9e9e9;
    padding:38px 0 65px;
}
.runpic-pic ul li span{
    display: block;
    width: 140px;
    height: 40px;
    line-height:36px;
    font-size: 48px;
    color: #fff;
    text-align:center;
    margin:0 auto 0;
    border-radius: 25px;
    background:#c8a063;
}
.runpic-pic-true{animation: toPicBig 1s ease-in-out both;}
@keyframes toPicBig
{0% {transform: scale(1.04);}100% {transform: scale(1);}}

.runpic-pic-shade {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding:180px 20% 0;
    margin:0 auto ;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    transition: all 2s;
}

.runpic-words-pic {
    height: 42px;
}


@media(max-width: 1600px){
    .runpic-pic-shade{
        padding:180px 15% 0;
    }
}
@media(max-width: 1440px){
    .runpic-pic-shade {
        padding: 150px 10% 0;
    }    
    .runpic-pic ul li{
        height: 800px;
    }
}
@media(max-width: 1260px){
    .runpic-pic-shade {
        padding: 100px 8% 0;
    }    
    .runpic-words ul li h6{
        font-size: 18px;
    }
}
@media(max-width: 1024px){
    .runpic-pic{
        height: 600px;
    }

    .runpic-pic-shade {
        padding: 60px 5% 0;
    }
    .runpic-pic ul li{
        height: 600px;
    }
    .runpic-pic ul li h5{
        font-size: 32px;
    }
    .runpic-pic ul li p {
        padding: 25px 0 45px;
    }
    .runpic-words{
        width: 100%;
        bottom:20px;
        left:0;
    }
    .runpic-line{
        bottom:120px;
    }
    .runpic-line-null{
        bottom:120px;
    }
    .runpic-words ul li h6{
        font-size: 16px;
    }
}
@media(max-width: 768px){
    
}
@media(max-width: 767px){
    .runpic-pic ul li p {
        padding: 15px 0 20px;
    }
    .runpic-pic ul li span{
        width: 110px;
        font-size: 36px;
    }
    .runpic-words ul li h6{
        font-size: 14px;
        height: 2em;
        margin-bottom: 10px;
        display:none;
    }
     .runpic-words ul li .runpic-words-pic {
        height: 52px;
    }
     .runpic-words ul li .runpic-words-pic img{
        /*display:none;*/
    }
}



.container{
    max-width: 1500px;
    width: 92%;
    margin:0 auto;
}
.partner_list{
    display: flex;
    flex-wrap: wrap;
    padding-top:35px;
}
.partner_list li{
    width: 16.8%;
    overflow: hidden;
    cursor: pointer;
    margin-right: 4%;
    margin-top: 40px;
    border:1px solid #e5e5e5;
}
.partner_list li:nth-child(5n){
    margin-right: 0%;
}
.partner_list li img{
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -ms-filter: grayscale(1); 
    transition: all 0.6s ease-out;   
}
.partner_list li:hover img{
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    -ms-filter: grayscale(0);  
    transition: all 0.6s;      
    transform: scale(1.05);
/*    transform: rotateY(360deg);*/
}

@media(max-width: 1600px){
    .partner_list li{
        margin-top: 30px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1360px){

    .partner_list li{
        width: 18.4%;
        margin-right: 2%;
        margin-top: 20px;
    }
}
@media(max-width: 1024px){

}
@media(max-width: 768px){
    .container{
        width: 96%;
    }   
}
@media(max-width: 767px){

    .partner_list{
        padding-top: 10px;
    }
    .partner_list li{
        width: 32%;
        margin-top: 10px;
    }
    .partner_list li:nth-child(3n){
        margin-right: 0;
    }
    .partner_list li:last-child{
        display: none;
    }
}




.kehu{
    background:#f2f2f2;
    padding:110px 0 105px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.kehu .about-zm{
/*    z-index: 3;*/
}
.kehu .about-zm h6{
    color: #e6e6e6;
    opacity: 1;
/*    transform: scale(1);
    opacity: 1;*/
}
h6.title1{
    font-size: 36px;
    color: #333;
/*    display: inline-block;*/
    font-weight: normal;
    line-height: 1em;  
    text-align:center;  
    position: relative;
    z-index: 3;
}
.kehu_list{
    margin-top: 82px;
    padding:0 57px;   
    position: relative; 
}
.kehu_list .swiper-button-next{
    background:url(../images/left1.png) no-repeat;
    width: 37px;
    height: 68px;
    right:0;
    outline: none;
    transform: rotate(-180deg);
}
.kehu_list .swiper-button-next:hover{
    background:url(../images/right1.png) no-repeat;    
    transform: rotate(-0deg);
}
.kehu_list .swiper-button-prev{
    background:url(../images/left1.png) no-repeat;
    width: 37px;
    height: 68px;
    left:0;
    outline: none;
}
.kehu_list .swiper-button-prev:hover{
    background:url(../images/right1.png) no-repeat;    
    transform: rotate(-180deg);
}
#kehu_swiper{

}
#kehu_swiper .swiper-slide{
    border-radius: 20px;
    overflow: hidden;
    background:#fff;
}
#kehu_swiper .swiper-slide .img{
    text-align: center;
}
#kehu_swiper .swiper-slide .text1{
     padding:45px 35px;
}
#kehu_swiper .swiper-slide .text1 h4{
    font-size: 24px;
    color: #222;
    line-height:1em;
    font-weight: normal;
}
#kehu_swiper .swiper-slide .text1 h4 span{
    display: block;
    font-size: 18px;
    color: #999;
    line-height:1em;
    margin-top: 10px;
}
#kehu_swiper .swiper-slide .text1 .line1{
    background:url(../images/line1.png) no-repeat left center;
    width: 100%;
    height: 4px;
    margin:22px 0;
}
#kehu_swiper .swiper-slide .text1 h5{
    font-size: 16px;
    color: #656565;
    font-weight: normal;
}   
#kehu_swiper .swiper-slide .text{
/*   display: none;*/
   position: absolute;
   top:100%;
   left:0;
   background:#c8a063;
   color: #fff;
   padding:35px 30px;
   width: 100%;
   height: 100%;
   transition: all 0.6s ease-out;
   opacity: 0;
   z-index: -1;
}
#kehu_swiper .swiper-slide .text h4{
    font-size: 24px;
    font-weight: normal;
    line-height:1em;
}   
#kehu_swiper .swiper-slide .text h4 span{
    display: block;
    font-size: 18px;
    padding-top:5px;
}
#kehu_swiper .swiper-slide .text .line2{
    width: 100%;
    height: 1px;
    background:#fff;
    margin:22px 0;
}
#kehu_swiper .swiper-slide .text h5{
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 22px;
}
#kehu_swiper .swiper-slide .text p{
    font-size: 14px;
    line-height:1.8em;
}
#kehu_swiper .swiper-slide:hover .text{
/*    display: block;*/
    transition: all 0.6s;
   opacity: 1;
   z-index: 9;
   top:0;
}
@media(max-width: 1600px){
    .kehu{
        padding:100px 0;
    }
    #kehu_swiper .swiper-slide{
        border-radius: 15px;
    }
    .kehu_list{
        margin-top: 60px;
    }
    #kehu_swiper .swiper-slide .text{
        padding:20px 15px;
    }
    #kehu_swiper .swiper-slide .text h4{
        font-size: 22px;
    }
    #kehu_swiper .swiper-slide .text h4 span{
        font-size: 16px;
    }
    #kehu_swiper .swiper-slide .text .line2{
        margin:10px 0;
    }
    #kehu_swiper .swiper-slide .text h5{
        margin-bottom: 15px;
        font-size: 16px;
    }
    h6.title1{
        font-size:32px;
    }
}
@media(max-width: 1440px){
    .kehu {
        padding: 90px 0 70px;
    }
    #kehu_swiper .swiper-slide .text p{
        height: 14em;
        overflow: hidden;
    }
}
@media(max-width: 1360px){
    
}
@media(max-width: 1024px){
    #kehu_swiper .swiper-slide .text1 {
        padding: 25px 15px;
    }
    #kehu_swiper .swiper-slide .text1 h4{
        font-size: 20px;
    }
    #kehu_swiper .swiper-slide .text1 h4 span{
        font-size: 16px;
    }
}
@media(max-width: 768px){
    h6.title1{
        font-size:28px;
    }    
}
@media(max-width: 767px){
    .kehu_list {
        margin-top: 30px;
    } 
    h6.title1{
        font-size:26px;
    }
}




.index_news{
    padding:115px 0 78px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.index_news .about-zm{
    width: 1000px;
    margin-left: -500px;
}
.index_news .about-zm h6{
/*    transform: scale(1);*/
}
.sort1{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #e5e5e5;
    margin-top: 30px;
}
.sort1 li{

}
.sort1 li a{
    display: block;
    padding:0 20px;
    position: relative;
    line-height:60px;
    height: 60px;
    font-size: 20px;
    color: #333;
}
.sort1 li a:after{
    content:'';
    width: 100%;
    height: 3px;
    background:#ccc;
    position: absolute;
    left:0;
    bottom:0;
    display: none;
}
.sort1 li:hover a:after{
    display: block;
}
.news_list1{
    display: flex;
    flex-wrap: wrap;
}
.news_list1 li{
    width: 33.333%;
    border-right: 1px solid #e5e5e5;
    padding:78px 40px 0px 40px;
    position: relative;
}
.news_list1 li:first-child{

}
.news_list1 li:last-child{
    border:none;
}
.news_list1 li:before{

}
.news_list1 li a{
    display: block;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 38px;
}
.news_list1 li a span{
    font-size: 16px;
    color: #999;
    padding-left: 26px;
    display: block;
    line-height:16px;
    background:url(../images/time.png) no-repeat left center;
    margin-bottom: 28px;
}
.news_list1 li a h3{
    font-weight: normal;
    font-size: 18px;
    color: #333;
    line-height:1.8em;
    height:3.6em;
    overflow: hidden;
}
.news_list1 li a em{
    display: block;
    width: 115px;
    line-height:40px;
    height: 40px;
    background:#c8a063;
    border-radius: 25px;
    font-size: 16px;
    color: #fff;
    text-align:center;
    font-style: normal;
    margin:45px 0 65px;
}
.news_list1 li a .img{
    overflow: hidden;
}
.news_list1 li a .img img{
    transition: all 0.6s ease-out;
}
.news_list1 li:hover a .img img{
    transition: all 0.6s;
    transform: scale(1.1);
}
@media(max-width: 1600px){
    .index_news{
        padding:100px 0 70px;
    }
    .news_list1 li{
        padding: 50px 30px 0px 30px;
    }
    .news_list1 li a span{
        margin-bottom: 20px;
    }
    .news_list1 li a em{
        margin: 35px 0 40px;
    }
    .news_list1 li a h3{
        font-size: 16px;
    }
}
@media(max-width: 1440px){
    .index_news {
        padding: 90px 0 50px;
    }    
}
@media(max-width: 1360px){
    
}
@media(max-width: 1024px){
    .news_list1 li {
        padding: 30px 20px 0px 20px;
    }    
}
@media(max-width: 768px){
    .news_list1 li {
        padding: 20px 15px 0px 15px;
    }   
    .news_list1 li a em {
        margin: 25px 0;
        width: 100px;
        line-height: 32px;
        height: 32px;
        font-size: 14px;
    }  

}
@media(max-width: 767px){
    .index_news {
        padding: 90px 0 30px;
    }
    .sort1{
        margin-top: 10px;
    }
    .news_list1 li{
        width: 100%;
        padding: 15px 10px 0px;
        border-right:none;
    }
    .news_list1 li a{
        padding-bottom: 10px;
    }
    .news_list1 li a em {
        margin: 15px 0;
    }
}




.footer{
    background:#edeef0;
}
.foot{
    display: flex;
    padding:80px 0;
/*    flex-wrap: wrap;*/
}
.foot li{
    margin-right: 55px;
}
.foot li:last-child{
    margin-right: 0;
}
.foot li a{
    display: block;
    font-size: 16px;
    color: #333;
}
.foot li .f_nava{

}
.foot li .f_nava a{
    font-size: 14px;
    color: #666;
}
.copyright{
    border-top:1px solid #ccc;
    padding:10px 0;
}
.f_link{

}
@media(max-width: 1600px){
    .foot li{
        margin-right: 30px;
    }
}
@media(max-width: 1440px){
    .foot{
        padding:60px 0;
    }
    .foot li{
        margin-right: 25px;
    }    
}
@media(max-width: 1360px){
    .foot li{
        margin-right: 20px;
    }      
}
@media(max-width: 1260px){
    .foot{
        flex-wrap: wrap;
    }
    .foot li{
        margin-right: 0px;
        width: 25%;
        margin-bottom: 15px;
    }  
/*    .foot li:first-child{
        display: none;
    }  
    .foot li:last-child{
        display: none;
    }   */   
}

@media(max-width: 1024px){
    
}
@media(max-width: 768px){
    .foot {
        padding: 40px 0;
    } 
    .foot li{
        display:none;
        width:50%;
    }
    .foot li:first-child{
        display:block;
        text-align:center;
    }
    .foot li:last-child{
        display:block;
    }
}
@media(max-width: 767px){
    .foot {
        padding: 25px 0;
    }   
    .foot li{
        width: 100%;
        margin-bottom: 10px;
    } 
    .f_link{
        display:none;
    }
}

/*----- Common css ------*/

.fl {
    float: left;
}

.fr {
    float: right;
}

.di {
    _display: inline;
}

.fwn {
    font-weight: normal;
}

.dib {
    *display: inline;
    _zoom: 1;
    _display: inline;
    _font-size: 0px;
}
.f_none{
    display: none;
}


/*------------内页-------------------*/
.n_banner {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.n_banner img {
    width: 100%;
    margin: 0 auto
}
.banner-text{
    position: absolute;
    left:90px;
    bottom:105px;
    color: #fff;
}
.banner-text h3{
    font-size: 48px;
    font-weight: normal;
    line-height:1em;
    margin-bottom: 20px;
}
.banner-text p{
    font-size: 18px;
    line-height:1em;
    font-family: 'Arial';
    text-transform: uppercase;
}
/* 鼠标 */
.banner-mouse{
    width: 96px;
    position: absolute;
    bottom: 24px;
    left: 50%;
    margin-left: -48px;
    z-index: 4;
    cursor: pointer;
    user-select: none;
}
.banner-mouse img{
    max-width: 100%;
}
.banner-mouse:after{
    content: "";
    position: absolute;
    width: 3px;
    height: 8px;
    left: 50%;
    margin-left: -1.5px;
    top: 50px;
    background: #fff;
    border-radius: 6px;
    animation: BanMouse 1.6s ease infinite;
}
@keyframes BanMouse{
    0%{top: 50px;}
    100%{top: 64px;}
}
.sitemp{
    padding:20px 0;
}
.n_container{
    max-width: 1200px;
    width: 92%;
    margin:0 auto;
}
.site{
    float: left;
    width: 35%;
    font-size: 16px;
}
.site a{
    font-size: 16px;
}
.sort{
    float: right;
/*    width: 60%;*/
    display: flex;
    flex-wrap: wrap;
/*    flex-direction: row-reverse;*/
}
.sort li{
    margin-right: 20px;
}
.sort li:last-child{
    margin-right: 0;
}
.sort li a{
    display: block;
    font-size: 16px;
    color: #666;
}
.sort li a:hover{
    color: #c8a063;
}
@media(max-width: 1600px){
    .banner-text{
        left:70px;
    }
    .banner-text h3{
        font-size: 36px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1360px){
    .banner-text{
        left:50px;
    }
    .banner-text h3{
        font-size: 30px;
    }    
    .banner-text p{
        font-size: 16px;
    }
}
@media(max-width: 1199px){
    .sitemp {
        padding: 10px 0;
    }
    .site{
        display: none;
    }
    .sort{
        float: none;
    }
    .banner-text {
        left: 30px;
        bottom:50px;
    }
    .n_container{
        width: 96%;
    }
}
@media(max-width: 768px){
    .banner-text h3{
        font-size: 24px;
        margin-bottom: 10px;
    }    
    .banner-text p{
        font-size: 16px;
    }    
}
@media(max-width: 767px){
    .sort li {
        margin-right: 10px;
        margin-bottom: 5px;
    }
    .sort li a{
        font-size: 14px;
    }
    .banner-text {
        left: 20px;
        bottom:20px;
    }
    .banner-text h3{
        font-size: 20px;
    }    
    .banner-text p{
        font-size: 14px;
    }  
}




/*n_about*/
.abome{
    padding:65px 0 80px;
}
.abome .about-zm{
    top:15px;
}
.index_about_text2{
    text-align:left;
}
.abome .about-num ul li h6{
    color: #c8a063;
}
#whgjz{
    display: flex;
    flex-wrap: wrap;
    margin-top: 105px;
}
#whgjz li{
    width: 31.333%;
    margin-right: 3%;
    /*cursor: pointer;*/
}
#whgjz li:last-child{
    margin-right: 0;
}
#whgjz li .img{
    overflow: hidden;
    text-align: center;
}
#whgjz li .img img{
    transition: all 0.6s ease-out;
}
#whgjz li .text{
    text-align:center;
    padding:25px 15px 30px;
    border:1px solid #e5e5e5;
    border-top:none;
}
#whgjz li h3{
    font-size: 24px;
    color: #333;
    font-weight: normal;
    line-height: 1em;
}
#whgjz li h3 span{
    font-size: 14px;
    color: #999;
    font-family: 'Arial';
    display: block;
    line-height: 1em;
    padding:6px 0 18px;
}
#whgjz li p{
    font-size: 16px;
}
/*#whgjz li:hover .img img{*/
/*    transition: all 0.6s;*/
/*    transform: scale(1.1);*/
/*}*/
#fzlc{
    padding:92px 0px 55px;
    background: url(../images/bg2.jpg) no-repeat center;
    background-size: cover;
    color: #fff;
}
#fzlc h2{
    font-weight: normal;
    font-size: 36px;
    color: #fff;
    text-align:center;
    margin-bottom: 112px;
}
.abofz-list{
    position: relative;
    width: 100%;
    padding:0 250px;
}
.abofz-list:after{
    content:'';
    position: absolute;
    top:21px;
    left:0;
    width: 100%;
    height: 1px;
    background:#fff;
}
.abofz-list .swiper-container{
    padding-top:22px;
}
#fzlc .swiper-slide{

    position: relative;
    text-align:center;
}
#fzlc .swiper-slide:before{
    content:'';
    position: absolute;
    top:-8px;
    left:50%;
    margin-left: -8px;
    width: 16px;
    height: 16px;
    background:#fff;
    border-radius: 50%;
}
#fzlc .swiper-slide:after{
    content:'';
    position: absolute;
    top:-21px;
    left:50%;
    margin-left: -21px;
    width: 40px;
    height: 40px;
    border:1px solid #fff;
    border-radius: 50%;    
    opacity: 0;
}

#fzlc .swiper-slide h3{
    font-size: 24px;
/*    font-weight: normal;*/
    line-height:1em;
    margin-top: 20px;
    font-family: '宋体';
    position: relative;
}
#fzlc .swiper-slide h3:after{
    content: '';
    position: absolute;
    top:0;
    left:50%;
    margin-left: -0.5px;
    width: 1px;
    height: 75px;
    background:#fff;
    opacity: 0;
}
#fzlc .swiper-slide .text{
    opacity: 0;
    width: 400%;
    margin-left: -150%;
    margin-top:15px;
    font-size: 16px;
}

#fzlc .swiper-slide:before:hover{
    background:#c8a063;
}
#fzlc .swiper-slide-active:before{
    background:#c8a063;
}
#fzlc .swiper-slide-active:after{
    opacity: 1;
}
#fzlc .swiper-slide-active h3{
    font-size: 48px;
    padding-top:90px;
}
#fzlc .swiper-slide-active h3:after{
    opacity: 1;
}
#fzlc .swiper-slide-active .text{
    display: block;
    opacity: 1;
}

.abofz-next{
    width: 43px;
    height: 43px;
    background:url(../images/right2.png) no-repeat center #e4e4e4;
    border-radius: 50%;
    transform: rotate(-180deg);
    position: absolute;
    top:0;
    z-index: 3;
    left:130px;
    outline: none;
    cursor: pointer;
}
.abofz-next:hover{
    background:url(../images/left2.png) no-repeat center #c8a063;
    transform: rotate(0deg);
}
.abofz-prev{
    width: 43px;
    height: 43px;
    background:url(../images/right2.png) no-repeat center #e4e4e4;
    border-radius: 50%;
    position: absolute;
    top:0;
    z-index: 3;
    right: 130px;
    outline: none;
    cursor: pointer;
}
.abofz-prev:hover{
    background:url(../images/left2.png) no-repeat center #c8a063;
    transform: rotate(-180deg);
}

#cdzy{
    padding:75px 0;
}
#cdzy h2{
    font-size: 36px;
    color: #333;
    font-weight: normal;
    text-align:center;
}
#cdzy .cdzy_text{
    font-size: 16px;
    margin: 25px 0 45px;
}
.cdzy_img{
    margin-bottom: 18px;
}
.cdzy_img_l{
    width: 46%;
    float: left;
}
.cdzy_img_r{
    width: 53%;
    float: right;
}
.cdzy_img_r li{
    width: 50%;
    float: left;
}
.cdzy_img_r li:nth-child(1),.cdzy_img_r li:nth-child(2){
    margin-bottom: 10px;
}

.cdzy_img2{

}
.cdzy_img2 li{
    float: left;
    width: 19.2%;
    margin-right: 1%;
}
.cdzy_img2 li:last-child{
    margin-right: 0;
}
.cdzy_img2 li img{
    display: block;
    margin-bottom: 18px;
}

.n_contact{
    padding:80px 0;
}
.n_contact h2{
    font-size: 36px;
    color: #333;
    font-weight: normal;
    text-align:center;
}
.n_contact ul{
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
}
.n_contact ul li{
    width: 28%;
    margin-right: 8%;
}
.n_contact ul li:last-child{
    margin-right: 0%;
}
.n_contact ul li h4{
    font-size: 24px;
    color: #333;
    font-weight: normal;
    line-height:1em;
    padding-bottom: 22px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}
.n_contact ul li .text1{
    font-size: 14px;
    color: #999;
}
.n_contact ul li .text2{
    margin-top: 32px;
}
.n_contact ul li .text2 a{
    display: inline-block;
    font-size: 14px;
    color: #666;
    width: 130px;
    line-height:46px;
    height: 46px;
    padding-left: 45px;
    border-radius: 25px;
    border:1px solid #e5e5e5;
}
.n_contact ul li .text2 a.a1{
    background:url(../images/icon1.png) no-repeat 22px 15px;
    margin-right: 15px;
}
.n_contact ul li .text2 a.a2{
    background:url(../images/icon2.png) no-repeat 22px 15px;    
}
.n_contact ul li .text3{
    display: flex;
    justify-content: space-between;
}
.n_contact ul li .text3 p{
    max-width: 50%;
    text-align: center;
    padding:0 5px;
}
.n_contact ul li .text4{

}
.n_contact ul li .text4 a{
    display: block;
    width: 134px;
    height: 40px;
    line-height:40px;
    border:1px solid #e5e5e5;
    font-size: 14px;
    color: #333;
    padding-left: 52px;
    background:url(../images/icon3.png) no-repeat 27px 11px;   
    margin-bottom: 15px; 
}
.n_contact ul li .text4 a:last-child{
    margin-bottom: 0;
}


.xs_message{
	background: rgba(0,0,0,.5);
	width: 100%;
	height: 100vh;
	position: fixed;
	top:0;
	left:0;
	display: none;
	z-index: 999999999999;
}
.xs_messages{
    width: 90%;
    max-width: 800px;
    margin: 12% auto 0;
    background: #fff;
    padding: 50px 5%;
    position: relative;
}
.xs_messages .close{
	font-size: 20px;
    color: #666;
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
}
.xs_messages h2{
	font-size: 24px;
	color: #333;
	text-align: center;
	padding-bottom:20px;
}
.xs_messages li{
	padding:0;
	border:none;
	margin:0 0 10px 0;
	width: 100%;
}
.xs_messages li input{
	background: none;
	border:none;
	border-bottom:1px solid #ccc;
	line-height: 40px;
	width: 100%;
	outline: none;
}
.xs_messages li select{
	background: none;
	border:none;
	border-bottom:1px solid #ccc;
	line-height: 40px;
	height: 40px;
	width: 100%;
	outline: none;
}
.xs_messages .m_btn{
	margin-right: 0%;
    width: 200px;
    float: none;
    margin:30px auto 0;
}
.m_btn input{
	background: #c8a063;
	font-size: 18px;
	color: #fff;
	border:1px solid #c8a063;
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
	line-height: 50px;
	height: 50px;
	text-align: center;
	outline: none;	
	cursor: pointer;
}
.m_btn input:hover{
    opacity: 0.8;
}

@media(max-width: 1600px){
    #whgjz{
        margin-top:70px;
    }
}
@media(max-width: 1440px){
    .abofz-list{
        padding:0 200px;
    }
    .abofz-prev{
        left:80px;
    }
    .abofz-next{
        right: 80px;
    }
    #cdzy {
        padding: 60px 0;
    }
    #cdzy .cdzy_text{
        font-size: 15px;
    }
    #fzlc h2{
        margin-bottom: 80px;
        font-size: 32px;
    }
    #cdzy h2{
        font-size: 32px;
    }  
    .n_contact h2{
        font-size: 32px;
    }

}
@media(max-width: 1360px){
    .abofz-list{
        padding:0 150px;
    }
    .abofz-prev{
        left:50px;
    }
    .abofz-next{
        right: 50px;
    }    
}
@media(max-width: 1199px){
    .abome {
        padding: 65px 0 50px;
    }
    #whgjz{
        margin-top: 50px;
    }
    #whgjz li .text {
        padding: 20px 12px;
    }
    #whgjz li p{
        height: 4em;
    }
    .abofz-list{
        padding:0 100px;
    }
    .abofz-prev{
        left:30px;
    }
    .abofz-next{
        right: 30px;
    }
    .n_contact{
        padding:0 0 60px;
    }
    .n_contact ul{
        margin-top: 40px;
    }
    .n_contact ul li .text2 {
        margin-top: 20px;
    }
    .n_contact ul li h4 {
        font-size: 20px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .n_contact ul li .text2 a.a1{
        margin-bottom: 10px;
        margin-right: 0;
        display: block;
    }

}
@media(max-width: 992px){
    #cdzy {
        padding: 50px 0;
    }
    #cdzy .cdzy_text{
        font-size: 14px;
        margin: 20px 0 25px;
    }  
    .n_contact{
        padding:0 0 50px;
    }  
    #fzlc h2{
        margin-bottom: 60px;
    }
    #fzlc{
        padding:50px 0;
    }
}
@media(max-width: 768px){
    #cdzy h2{
        font-size: 28px;
    }  
    .n_contact h2{
        font-size: 28px;
    }
    #fzlc h2{
        font-size: 28px;
    }
    #fzlc .swiper-slide-active h3 {
        font-size: 36px;
        padding-top: 65px;
    }   
    #fzlc .swiper-slide h3:after{
        height: 50px;
    } 
}
@media(max-width: 767px){
    #cdzy {
        padding: 30px 0;
    }  
    #cdzy h2{
        font-size: 26px;
    }  
    .n_contact h2{
        font-size: 26px;
    }
    #fzlc{
        padding:30px 0;
    }
    #fzlc h2{
        margin-bottom: 30px;
        font-size:26px;
    }
    #whgjz li{
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    #whgjz li p{
        height: 2em;
    }
    #whgjz li h3 span{
        padding: 5px 0 10px;
    }
    .abome {
        padding: 65px 0 20px;
    }
    .abofz-list{
        padding:0 10px;
    }
    .abofz-prev,.abofz-next{
        display: none;
    }
    #fzlc .swiper-slide .text{
        width: 100%;
        margin-left: 0;
    }
    #fzlc .swiper-slide-active h3{
        font-size: 32px;
    }
    .cdzy_img {
        margin-bottom: 10px;
    }
    .cdzy_img_l{
        width: 100%;
        float: none;
    }
    .cdzy_img_r{
        width: 100%;
        float: none;
        margin-top: 10px;
    }
    .cdzy_img2 li img {
        margin-bottom: 5px;
    }
    .n_contact {
        padding: 0 0 20px;
    }
    .n_contact ul {
        margin-top: 25px;
    }
    .n_contact ul li {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 20px;
    }
}

/*n_product*/
.product_intro{
    padding:40px 0 70px;
}
.product_intro h2{
    font-size: 36px;
    color: #333;
    line-height:1em;
    margin-bottom: 30px;
}
.product_intro .text{
    position: relative;
    font-size: 15px;
    color: #999;
}
.product_intro .text:before{
    content:'Product';
    position: absolute;
    right: 0;
    bottom:-30px;
    font-size: 180px;
    line-height:1em;
    color: #f7f4f5;
    z-index: -1;
    font-weight: bold;
}
.product_intro em{
    display: block;
    width: 100%;
    text-align:right;
    font-size: 18px;
    color: #c8a063;
    font-style: normal;
    margin-top:55px;
}
.products1{
    position: relative;
}
.product1{
    position: absolute;
    bottom:0;
    left:0;
    width: 100%;
    z-index: 9;

}
.product1 .n_container{
    display: flex;
    flex-wrap: wrap;
}
.p_text{
    background:url(../images/p_bg1.jpg) no-repeat top left;
    width: 273px;
    height: 273px;
    text-align:center;
    padding:75px 0 0;
}
.p_text h3{
    font-size: 48px;
    color: #fff;
    line-height:1em;
    font-weight: normal;
    margin-bottom: 8px;
}
.p_text p{
    font-size: 60px;
    color: #dabc93;
    line-height:1em;
    font-family: 'Arial';
    font-weight: bold;
}
.p_texts{
    width: calc(100% - 273px);
    background:#e7e7e8;
    padding:45px 50px 0;
}
.p_texts h3{
    font-size: 36px;
    color: #333;
    line-height:1em;
    font-weight: normal;
    position: relative;
    padding-bottom: 22px;
    text-indent: -12px;
    margin-bottom: 15px;
}
.p_texts h3:after{
    content:'';
    position: absolute;
    left:0;
    bottom:0;
    width: 68px;
    height: 3px;
    background:#c8a063;
    opacity: 0.15;
}
.p_texts p{
    font-size: 16px;
    color: #666;
}
.products2{
    background:#f7f7f7;
    padding:165px 0 45px;
}
.products2 .n_container{
    position: relative;
}
.products2 .n_container:before{
    content:'Product';
    position: absolute;
    bottom:100px;
    left:-140px;
    font-size: 190px;
    color: #eee;
    font-weight: bold;
    line-height: 1em;
    z-index: -1;
}
.product2{
    width: 48%;
    float: left;
}
.product2 .p_text{
    position: absolute;
    right:-175px;
    top:-80px;
}
.product2 .p_texts{
    background:none;
    padding:0;
    width: 100%;
}
.product2 .p_texts h3{
    line-height:1.8em;
    margin-bottom: 45px;
}
.p_img_scroll{
    width: 47%;
    float: right;
    border: 10px solid #f7f7f7;
    margin-top: 140px;
    position: relative;
}
#product8{
    background: none;
}
.product_bottom{
    padding:55px 0;
}
.product_bottom .n_container{
    border-top:1px solid #e5e5e5;
    border-bottom:1px solid #e5e5e5;
    padding-top:30px;
    padding-bottom:50px;
}
.product_bottom_text{

}
.product_bottom_text span{
    font-size: 24px;
    color: #c8a063;
    display: block;
    width: 72px;
    float: left;
    line-height: 1.2em;
}
.product_bottom_text p{
    font-size: 16px;
    color: #666;
    width: calc(100% - 72px);
    float: right;
}
.product_bottom_img{
    display: flex;
/*    flex-wrap: wrap;*/
    justify-content: center;
    margin-top: 25px;
}
.product_bottom_img p{
    margin-right: 45px;
}
.product_bottom_img p:last-child{
    margin-right: 0;
}
.product_bottom_img p img{

}
@media(max-width: 1600px){
    .products2 .n_container:before{
        font-size:150px;
        bottom:60px;
        left:0;
    }
}
@media(max-width: 1440px){
    .product_intro h2{
        font-size: 32px;
    }
    .product_intro .text:before{
        font-size: 150px;
        bottom:0;
    }
    .p_text h3{
        font-size: 40px;
    }
    .p_text p{
        font-size: 52px;
    }
    .p_texts h3{
        font-size: 32px;
    }
    .product2 .p_text{
        right: 0;
        top:-60px;
    }
    .products2 .n_container:before{
        font-size:120px;
        bottom:50px;
    }
}
@media(max-width: 1360px){
    
}
@media(max-width: 1199px){
    .product_intro {
        padding: 40px 0 50px;
    }
    .product_intro .text{
        font-size: 14px;
    }
    .product_intro h2{
        font-size: 28px;
        margin-bottom: 20px;
    }
    .product_intro em {
        font-size: 16px;
        margin-top: 30px;
    }
    .p_text {
        width: 220px;
        height: 220px;
        padding: 50px 0 0;
    }
    .p_text h3 {
        font-size: 32px;
    }
    .p_text p {
        font-size: 42px;
    }
    .p_texts {
        width: calc(100% - 220px);
        background: #e7e7e8;
        padding: 30px 30px 30px;
    }
    .p_texts h3 {
        font-size: 24px;
    }
    .products2 {
        padding: 120px 0 30px;
    }
    .product2 .p_texts h3{
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    .product2 .p_text{
        top:-30px;
    }
    .product_bottom_img p{
        margin-right: 35px;
    }
    .products2 .n_container:before{
        font-size:80px;
    }
}
@media(max-width: 992px){
    
}
@media(max-width: 768px){
    .product_intro {
        padding: 40px 0 30px;
    }
    .product_intro h2{
        font-size: 26px;
        margin-bottom: 15px;
    }  
    .product1{
        position: relative;
    }
    .product1 .n_container{
        width: 100%;
    }  
    .p_text{
        display: none;
    }
    .p_texts{
        width: 100%;
        padding: 20px;
    }
    .p_texts h3{
        font-size: 22px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .p_texts p{
        font-size: 15px;
    }
    .products2 {
        padding: 30px 0 30px;
    }
    .p_img_scroll{
        margin-top: 0;
    }
    .product_bottom{
        padding:30px 0;
    }
    .product_bottom_img p{
        margin-right: 20px;
    }
    .product_intro .text:before{
        font-size: 120px;
    }
    .products2 .n_container:before{
        font-size:60px;
    }
}
@media(max-width: 767px){
    .product_intro {
        padding: 20px 0 30px;
    }
    .product_intro h2{
        font-size: 22px;
    }
    .product_intro .text:before{
        font-size: 60px;
    }
    .product2{
        width: 100%;
        float: none;
    }
    .p_img_scroll{
        width: 100%;
        float: none;   
        margin-top:15px; 
    }
    .p_texts h3{
        font-size: 20px;
    }
    .product_bottom {
        padding: 0 0 30px;
    }
    .product_bottom .n_container{
        padding-top: 20px;
        padding-bottom: 30px;        
    }
    .product_bottom_text span{
        display: inline-block;
        width: 100%;
        font-size: 16px;
        float: none;
    }
    .product_bottom_text p {
        font-size: 14px;
        width: 100%;
        float: none;
    }
    .product_bottom_img{
        margin-top: 15px;
    }
    .product_bottom_img p{
        margin-right: 10px;
    }
    .products2 .n_container:before{
        font-size: 80px;
        bottom: 380px;
    }
}


/*yunkai*/
.yunkai1{
    padding:40px 0 100px;
}
.yunkai1 .n_container{
    position: relative;
}
.yunkai1 .n_container:before{
    content: 'University';
    position: absolute;
    right: 0;
    top: -5px;
    font-size: 190px;
    line-height: 1em;
    color: #f7f4f5;
    z-index: -1;
    font-family: 'Arial';
    font-weight: bold;
/*    width: 100%;*/
/*    text-transform: uppercase;*/
}
.yunkai1 h2{
    font-size: 36px;
    color: #c8a063;
    font-weight: normal;
    text-align:center;
    margin-bottom: 30px;
}
.yunkai1 p{
    font-size: 15px;
    color: #666;
    line-height: 1.8em;
}
.yunkai1 h3{
    font-size: 24px;
    color: #333;
    font-weight: normal;
    text-align:center;
    padding:30px 0 45px;
}
.yunkai_movie1{
    margin:60px 0 0;
}
.yunkai_movie1 video{
    width: 100%;
}
.yunkai1_ul1{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.yunkai1_ul1 li{
    width: 138px;
    height: 138px;
    border:1px dashed #c8a063;
    border-radius: 50%;
    text-align:center;
    margin:0 5%;
    cursor: pointer;
}
.yunkai1_ul1 li .img{
    padding-top:32px;
    text-align: center;
}
.yunkai1_ul1 li .img img{
    
}
.yunkai1_ul1 li h4{
    font-size: 18px;
    color: #333;
    font-weight: normal;
    padding-top:10px;
}
.yunkai1_ul2{
    display: flex;
    flex-wrap: wrap;
    padding-top:70px;
    border-top:1px solid #e5e5e5;
    margin-top:100px;
}
.yunkai1_ul2 li{
    width: 32%;
    margin-right: 2%;
    cursor: pointer;
}
.yunkai1_ul2 li:last-child{
    margin-right: 0;
}
.yunkai1_ul2 li a{
    display: block;
}
.yunkai1_ul2 li .img{
    overflow: hidden;
    position: relative;
    text-align: center;
}
.yunkai1_ul2 li .img img{
    transition: all 0.6s ease-out;
}
.yunkai1_ul2 li h4{
    color: #fff;
    font-size: 24px;
    line-height:1em;
    font-weight: normal;
    position: absolute;
    bottom:35px;
    left:20px;
}
.yunkai1_ul2 li p{
    padding:20px 18px;
    border:1px solid #e5e5e5;
    border-top:none;
    height: calc(6em + 40px);
    overflow: hidden;
}
.yunkai1_ul2 li:hover .img img{
    transition: all 0.6s;
    transform: scale(1.1);
}
.new_video{
    margin:0px auto 50px;
}
.new_video{
    margin:50px auto 0px;
}
.new_video video{
    width: 100%;
}
.yunkai2{
    color: #c8a063;
    padding-top:30px;
}
.yunkai2 .n_container{
    position: relative;
}
.yunkai2 .n_container:before {
    content: 'Publicclass';
    position: absolute;
    right: 0;
    top: -5px;
    font-size: 190px;
    line-height: 1em;
    color: #f7f4f5;
    z-index: -1;
    font-family: 'Arial';
    font-weight: bold;

    /* width: 100%; */
    /* text-transform: uppercase; */
}
.yunkai2 h2{
    font-size: 36px;
    color: #c8a063;
    font-weight: normal;
    text-align: center;
    margin-bottom: 30px;    
}
.yunkai2 p {
    font-size: 15px;
    color: #666;
    line-height: 1.8em;
}
.yunkai2 h3{
    font-size: 28px;
    color: #000;
    line-height:1em;
    padding-left: 22px;
    position: relative;
    font-weight: normal;
    margin:60px 0 30px;
}
.yunkai2 h3:before{
    content: '';
    width: 5px;
    height: 22px;
    background:#c8a063;
    position: absolute;
    left:0;
    top:1px;
}
.gkk_ys{
    display: flex;
    flex-wrap: wrap;
/*    border-top:3px solid #c8a063;*/
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 90px;
}
.gkk_ys li{
    width: 25%;
/*    background:#;*/
    border-right: 1px solid #ccc;
    padding: 50px 30px;
    cursor: pointer;
    position: relative;
}
.gkk_ys li h4{
    font-size: 22px;
    color:#333;
    font-weight: normal;
    padding-left: 20px;
    position: relative;
    line-height:1em;
    margin-bottom: 20px;
}
.gkk_ys li h4:before{
    content: '';
    width: 8px;
    height: 8px;
    background:#c8a063;
    position: absolute;
    left:0;
    top:50%;
    margin-top: -4px;
}
.gkk_ys li p{

}
/*.gkk_ys li:hover{
    background:#c8a063;
}*/
.gkk_ys li:after{
    content: "";
    position: absolute;
    top: 0;
    height: 3px;
    left: 0;
    background: #c8a063;
    width: 100%;
    z-index: -1;
    transition: all .6s ease;
}
.gkk_ys li:hover{
    border-color: #deba72;
    box-shadow: 0 6px 12px 2px #e5e5e5;
}
.gkk_ys li:hover:after{
    height: 100%;
}
.gkk_ys li:hover h4{
    color: #fff;
}
.gkk_ys li:hover h4:before{
    background:#fff;
}
.gkk_ys li:hover p{
    color: #fff;
}
.yunkai2_2{
    background:url(../images/bg3.jpg) no-repeat center;
    background-size: cover;
    padding:85px 0 90px;
}
.yunkai2_2 h2{
    font-size: 36px;
    background:linear-gradient(to right, #ffd684, #d49535);
    /*background-image: -webkit-linear-gradient(right, #ffd684, #f0c069, #d69838);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height:1em;
    text-align:center;
}
.yunkai2_2 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top:184px;
    background:url(../images/line3.png) no-repeat center 10px;
}
.yunkai2_2 ul li{
    max-width: 160px;

}
.yunkai2_2 ul li:nth-child(2){
    margin:0 310px;
}
.yunkai2_2 ul li em{
    font-style: normal;
    font-size: 24px;
    color: #fff;
    text-align:center;
    display: block;
    width: 98px;
    height: 98px;
    line-height:98px;
    border-radius: 50%;
    margin:0 auto 25px;
    background:#c8a063;
    position: relative;
}
.yunkai2_2 ul li em:before{
    content:'';
    position: absolute;
    top:-9.5px;
    left:-9.5px;
    width: 118px;
    height: 118px;
    border:1px solid #c8a063;
    border-radius: 50%;
}
.yunkai2_2 ul li p{
    font-size: 16px;
    color: #fed583;
}

.yunkai2_3{
    background:#e9e8e5;
    padding:65px 0 85px;
}
.yunkai2_3 h2{
    font-size: 36px;
    color: #333;
    line-height:1em;
    text-align:center;
    margin-bottom: 38px;
}

.kczx{
    display: flex;
    padding:0 20px;
    background:#5b4422;
} 
.kczx p{
    position: relative;
    border-right: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    line-height:48px;
    height: 48px;
    padding-left: 60px;
}  
.kczx p:before{
    content:'';
    width: 4px;
    height: 4px;
    position: absolute;
    background:#fed583;
    left:50px;
    top:50%;
    margin-top:-2px;
}
.kczx p:nth-child(1){
    width: 35%;
    padding-left: 40px;
}
.kczx p:nth-child(1):before{
    left:28px;    
}
.kczx p:nth-child(2){
    width: 21%;
}

.kczx p:nth-child(3){
    width: 21%;
}
.kczx p:nth-child(4){
    width: 23%;
    border:none;
}
.kczx_content{
    padding-bottom: 65px;
    background:#fff;
}
.kczx_list{

    padding:0 20px;
}
.kczx_list li{
    line-height: 46px;
    height: 46px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
}
.kczx_list li p{
    white-space: nowrap; 
    text-overflow: ellipsis;
    overflow: hidden; 
    font-size: 15px;
    color: #999;   
    padding-left: 60px;
}
.kczx_list li p:nth-child(1){
    width: 35%;
    padding-left: 40px;
}
.kczx_list li p:nth-child(2){
    width: 21%;
}
.kczx_list li p:nth-child(3){
    width: 21%;
}
.kczx_list li p:nth-child(4){
    width: 23%;
}

.yunkai3{
    padding:30px 0 75px;
}
.yunkai3 .n_container:before{
    content:'Intergeneration';
    right:-200px;
}
.yunkai3_2{
    padding:94px 0 0;
    background:url(../images/bg4.jpg) no-repeat center;
    background-size: cover;
}
.yunkai3_2 h2{
    font-size: 48px;  
    background: linear-gradient(to right, #f8da9d, #d39434);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align:center;
    padding-bottom: 80px;
    line-height:1em;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.yunkai3_2 h2 span{
    display: inline-block;
    width: 14px;
    height: 40px;
    background:#d0a864;
    margin-right: 16px;
    position: relative;
    top: 3px;
}
.yunkai3_2 ul{
    display: flex;
    margin-top:38px;
}
.yunkai3_2 ul li{
    color: #fff;
    width: 33.333%;
    display: flex;
    flex-wrap: wrap;
    height: 480px;
    padding:80px 0 220px;
    border-right: 1px solid rgba(255,255,255,.1);
    transition: all .6s ease;
}
.xmcg{
    width: 100%;
    text-align:center;
}
.yunkai3_2 ul li .text1{
    width: 200px;
    text-align: center;
    height: 155px;
    margin-left: 100px;
    padding-top:20px;
    float: left;
    transition: all .6s ease;

}

.yunkai3_2 ul li .text1 h3{
    font-size: 28px;
    font-weight: normal;
    padding:10px 0 15px;
}
.yunkai3_2 ul li .text1 h4{
    font-size: 18px;
    font-weight: normal;
    line-height:1.6em;
}
.yunkai3_2 ul li .text2{
    border-left: 1px solid rgba(255, 255, 255, .1);
    width: 460px;
    padding-left: 30px;
    text-align: left;
    height: 14em;
    float: left;
    overflow: hidden;
    opacity: 0;
    font-size: 16px;
    margin-left: 15px;
}
.yunkai3_2 ul:hover li{
    width: 20%;
}
.yunkai3_2 ul li:hover{
    width: 60%;
}
.yunkai3_2 ul:hover li .text1{
    margin-left: 15px;
}
.yunkai3_2 ul li:hover .text2{
    opacity: 1;
    transition: all .6s ease .4s;
}
.yunkai3_3{
    padding:75px 0 115px;
}
.yunkai3_3 h2{
    font-size: 48px;
    color: #333;
    text-align: center;
    padding-bottom: 55px;
    line-height: 1em;
    font-weight: normal;
}
.yunkai3_3 h2 span{
    display: inline-block;
    width: 14px;
    height: 40px;
    background: #d0a864;
    margin-right: 16px;
    position: relative;
    top: 3px;    
}


.yunkai1_1{
    
}
.yunkai1_1 .n_container:before{
    content:'Dense fog';
}
.yunkai1_1 h3{
    text-align: left;
    background: url(../images/icon8.png) no-repeat left 50px;
    line-height: 42px;
    padding:50px 0 36px 58px;
    border-bottom: 1px solid #e5e5e5;
}
.yunkai1_2{
    padding:65px 0 110px;
}
.yunkai1_2 h2,.yunkai1_3 h2{
    font-size: 34px;
    color: #333;
    line-height: 1em;
    font-weight: normal;
    text-align: center;
}
.yunkai1_ul3{
    display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
    margin-top: 58px;
}
.yunkai1_ul3 li{
    font-size: 18px;
    color: #333;
    display: flex;
    justify-content: center;
    position: relative;
    width: 16%;
    border-radius: 50px;
    border:1px solid #e5e5e5;
    padding:17px 0;
    cursor: pointer;
    /*line-height: 31px;*/
    /*height: 60px;*/
}
.yunkai1_ul3 .jia{
    width: 5%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yunkai1_ul3 .jia:last-child{
    display: none;
}
.yunkai1_ul3 li .img{
    width: 43px;
    height: 31px;
    position: relative;
    margin-right: 10px;
    overflow: hidden;
    margin-top:2px;
    text-align: center;
}
.yunkai1_ul3 li .img img{
    position: absolute;
    display: block;
    top:0;
    left:0;
    transition: all 0.6s ease-out;
}
.yunkai1_ul3 li h4{
    line-height: 32px;
    font-weight: normal;
}
.yunkai1_ul3 li:hover{
    background: #c8a063;
}
.yunkai1_ul3 li:hover{
    border:1px solid #c8a063;
}
.yunkai1_ul3 li:hover h4{
    color: #fff;
}
.yunkai1_ul3 li:hover .img img{
    top:-31px;
    transition: all 0.6s;
}
.yunkai1_3{
    padding:70px 0 25px;
    background: url(../images/bg5.jpg) no-repeat;
    background-size: cover;
    color: #fff;
}
.yunkai1_3 h2{
    color: #fff;
}
.yunkai1_ul4{
    display: flex;
    flex-wrap: wrap;
    margin-top:80px;
}
.yunkai1_ul4 li{
    position: relative;
    /*max-width: 126px;*/
    text-align: center;
    width: 23%;
    margin:0 1% 75px;
}
.yunkai1_ul4 li .img{
    width: 102px;
    height: 102px;
    border-radius: 50%;
    position: relative;  
    overflow: hidden;
    background: #fff;
    margin:0 auto;
    text-align: center;
}
.yunkai1_ul4 li .img img{
    transition: all 0.6s ease-out;
    display: block;
    position: absolute;
    top:0;
    left:0;
}
.yunkai1_ul4 li:before{
    content:'';
    position: absolute;
    left: 50%;
    margin-left: -63px;
    top: -12px;
    width: 126px;
    height: 126px;
    border:1px dashed #fff;
    border-radius: 50%;
}
.yunkai1_ul4 li p{
    font-size: 18px;
    color: #fff;
    text-align: center;
    padding-top:22px;
    line-height: 1.6em;
}
.yunkai1_ul4 li:hover:before{
    border:1px dashed #c8a063;
}
.yunkai1_ul4 li:hover .img{
    background: #c8a063;
}
.yunkai1_ul4 li:hover .img img{
    top:-102px;
    transition: all 0.6s;
}
.yunkai1_ul4 li:hover p{
    color: #c8a063;
}

.yunkai3_4{
    padding:50px 0 100px;
}

.shili3_list{
    margin-top:10px;
    display: flex;
    flex-wrap: wrap;
}
.shili3_list li{
    width: 23.5%;
    margin-right: 2%;
    background:none;
    position: relative;
    overflow: hidden;
    transition:all 0.6s ease-out;
}
.shili3_list li:last-child{
    margin-right: 0;
}
.shili3_list li .sl3_ti{
    font-size: 16px;
    color: #020202;
    padding:0 15px;
    line-height: 60px;
    border-bottom: 1px solid #e5e5e5;
    background:#f4f4f4;
}
.shili3_list li .sl3_ti .num{
    vertical-align: middle;
    display: inline-block;
    width: 21px;
    height: 24px;
    background: url(../images/num1.png) no-repeat center;
    background-size: 100% !important;
    margin-right: 12px;
    transition-duration: .3s;
    text-align: center;
    line-height: 26px;   
    font-size: 14px; 
}
.shili3_list li .text{
    padding: 30px 5px 30px 15px;
    background:#f4f4f4;
}
.shili3_list li .text h3{
    font-size: 24px;
    color: #020202;
    font-weight: normal;
    line-height:1em;
    margin-bottom: 22px;
}
.shili3_list li .text p{
    font-size: 15px;
    line-height:1.6em;
}
.shili3_list li .img{
    text-align: center;    
}
.shili3_list li .img img{
    
}
.shili3_list li .xs{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s ease-out;
    background:rgba(200,160,99,.8);
}
.shili3_list li .xs .sl3_ti{
    color: #fff;
    background:none;
}
.shili3_list li .xs .text2{
    color: #fff;
    padding:30px 15px;
    background:none;
}
.shili3_list li .xs .text2 h4{
    font-size: 20px;
    font-weight: normal;
    line-height:1em;

}
.shili3_list li .xs .text2 h3{
    font-size: 24px;
    font-weight: normal;
    line-height:1em;
    padding:10px 0; 
}
.shili3_list li .xs .text2 p{
    font-size: 15px;
    line-height:1.6em;    
}
.shili3_list li .xs .sl3_ti .num{
    background: url(../images/num1_h.png) no-repeat center;
    color: #fff;
}
.shili3_list li:hover {
    transition:all 0.6s ;
}
.shili3_list li:hover .sl_c{
    display: none;
}
.shili3_list li:hover .xs{
    opacity: 1;
    transition: all 0.6s ;
}


.yunkai3_5{
    background: #f9f9f9;
    padding:70px 0 80px;
}
.yunkai3_5 h2{
    margin-bottom: 35px;
}
.yunkai3_5 p{
    font-size: 16px;
}

a#download{
    display: block;
    width: 230px;
    line-height: 46px;
    height: 46px;
    background: #d49535;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin: 30px 20px 0;
}
a#download:hover{
    text-decoration: underline;
}

@media(max-width: 1600px){

}
@media(max-width: 1440px){
    .yunkai1 h2{
        font-size: 32px;
    }
    .yunkai1 .n_container:before{
        font-size: 150px;
    }
    .yunkai1_ul1 li{
        margin:0 4%;
    }
    .yunkai1 h3 {
        font-size: 20px;
        padding: 30px 0;
    }
    .yunkai1_1 h3{
        padding: 30px 0 30px 58px;
        background:url(../images/icon8.png) no-repeat left 30px;
    }
    .yunkai1_ul2 {
        padding-top: 50px;
        margin-top: 60px;
    }
    .yunkai1_ul2 li p{
        height: calc(8em + 40px);
        padding: 20px 15px;
    }
    .yunkai1 {
        padding: 40px 0 60px;
    }
    .yunkai2 h2{
        font-size: 32px;
        margin-bottom: 20px;
    }
    .yunkai2 .n_container:before{
        font-size: 150px;
    }
    .yunkai2 h3{
        font-size: 26px;
    }
    .gkk_ys li{
        padding: 30px 15px;
    } 
    .yunkai2_2 h2{
        font-size: 32px;
    }
    .yunkai2_3 h2{
        font-size: 32px;
    }
    .gkk_ys{
        margin-bottom: 60px;
    }
    .yunkai2_2{
        padding:60px 0;
    }
    .yunkai3 {
        padding: 30px 0 50px;
    }
    .yunkai3_2 ul li .text1{
        margin-left: 80px;
    }
    .yunkai3_2 ul li .text2{
        width: 400px;
    }
    .yunkai3_2 h2{
        padding-bottom: 60px;
    }
    .yunkai3_2 ul li{
        padding:50px 0 150px;
    }
    .yunkai3_2 ul li .text2{
        font-size: 15px;
    }
    .yunkai1_2 {
        padding: 65px 0;
    }
    .yunkai1_ul3 li{
        padding:12px 0;
        font-size:16px;
    }
    .yunkai1_ul3 li .img{
        margin-right:5px;
    }
    .yunkai1_2 h2, .yunkai1_3 h2{
        font-size:30px;
    }
    .yunkai1_ul3{
        margin-top:40px;
    }

    .shili3_list li .text {
        padding: 20px 10px;
    }
    .shili3_list li .text h3{
        font-size: 22px;
        margin-bottom: 15px;
    }
    .shili3_list li .xs .text2 h3{
        font-size: 22px;
    }

}
@media(max-width: 1360px){
    .yunkai1_ul1 li{
        margin:0 3%;
    } 
    .yunkai2_2 ul{
        background:none;
        padding-top: 50px;
    } 
    .yunkai2_2 ul li:nth-child(2) {
        margin: 0 200px;
    }  
    .yunkai3_2{
        padding:60px 0 0;
    }
    .yunkai3_2 ul li .text1 h3{
        font-size: 20px;
    } 
    .yunkai3_2 ul li .text1 h4{
        font-size: 14px;
    }
    .yunkai3_3 h2{
        font-size: 40px;
    }
    .yunkai3_3 h2 span{
        top:6px;
    }
    .yunkai3_2 h2{
        font-size: 40px;
    }
    .yunkai3_2 h2 span{
        top:6px;
    }
    .yunkai3_3 {
        padding: 60px 0;
    }
    .yunkai1_ul4 li{
        margin:0 1% 50px;
    }
    .yunkai1_ul4 li p{
        font-size:16px;
    }
}
@media(max-width: 1359px){
    .yunkai3_2 ul li .text1{
        margin-left: 0px;
        width: 100%;
    }
    .yunkai3_2 ul:hover li .text1{
        margin:0;
    }
    .yunkai3_2 ul li .text2{
        width: 100%;
        border:none;
        padding:0 15px;
        margin:0;
    }
}
@media(max-width: 1260px){
    .yunkai1_ul1 li{
        margin:0 2%;
    }  
    .gkk_ys li h4{
        font-size: 20px;
    }  
    .yunkai2_2 ul li:nth-child(2) {
        margin: 0 150px;
    }

    .yunkai2_3{
        padding:50px 0;
    }
    .kczx_content{
        padding-bottom: 30px;
    } 
    .kczx{
        padding:0;
    }  
    .kczx p{
        padding:0 10px 0 30px!important;
    }
    .kczx p:before{
        left:20px!important;
    }

    .kczx_list{
        padding:0;
    }
    .kczx_list li p{
        padding-left: 30px!important;
    }
    .yunkai2 h2{
        font-size: 28px;
    }
    .yunkai1_ul3 li{
        padding:10px 0;
    }
    .yunkai1_2 h2, .yunkai1_3 h2{
        font-size:28px;
    }
    .yunkai3 .n_container:before{
        right:0;
    }
}
@media(max-width: 992px){
    .yunkai1_ul2 {
        padding-top: 30px;
        margin-top: 40px;
    } 
    .yunkai1_ul2 li p {
        height: calc(10em + 30px);
        padding: 15px 12px;
    }  
    .yunkai1 {
        padding: 40px 0 30px;
    } 
    .yunkai1_ul2 li h4{
        bottom:15px;
    }
    .yunkai2_2 ul li:nth-child(2) {
        margin: 0 100px;
    } 
    .gkk_ys{
        margin-bottom: 40px;
    }
    .yunkai1_2 {
        padding: 40px 0;
    }
    .yunkai1_ul3{
        margin-top:30px;
    }
}
@media(max-width: 768px){
    .yunkai1 h2{
        font-size: 28px;
    }    
    .yunkai1 .n_container:before{
        font-size: 120px;
    }
    .yunkai1 {
        padding: 30px 0 30px;
    } 
    .yunkai2 .n_container:before{
        font-size: 120px;
    }
    .yunkai2 h3{
        font-size: 24px;
    }

    .yunkai2 p{
        font-size: 14px;
    }
    .gkk_ys li{
        width: 50%;
        padding:20px 12px;
    }
    .yunkai2_2{
        padding:50px 0;
    }
    .yunkai2 h2{
        font-size: 26px;
    }
    .yunkai3_2{
        padding:40px 0 0;
    }
    .yunkai3_2 h2{
        font-size: 26px;
        padding-bottom: 40px;
    }
    .yunkai3_2 h2 span{
        width: 6px;
        height: 30px;
    }
    .yunkai3_2 ul{
        margin-top: 20px;
    }
    .yunkai3_2 ul li{
        padding:30px 0 80px;
    }
    .yunkai3_2 ul li .text2{
        padding:0 5px;
        font-size: 14px;
    }
    .yunkai3_3 h2{
        font-size: 26px;
        padding-bottom: 30px;        
    }
    .yunkai3_3 h2 span{
        width: 6px;
        height: 30px;
    }
    .yunkai3_3 {
        padding: 50px 0;
    }
    .yunkai1_2 h2, .yunkai1_3 h2{
        font-size:26px;
    }
    .yunkai1_ul4 li{
        margin:0 1% 30px;
    }

    .shili3_list li {
        width: 42%;
        margin:2% 4%;
    }
    .shili3_list li:nth-child(2n) {
        margin-right: 0;
    }
    .shili3_list li .text {
        padding: 15px 10px;
    }
    .shili3_list li .text h3{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .shili3_list li .xs .text2 h3 {
        font-size: 18px;
    }
    .new_video{
        margin:0px auto 30px;
    }
    .new_video2{
        margin:30px auto 0px;
    }
}
@media(max-width: 767px){
    .yunkai1 h2{
        font-size: 26px;
    }  
    .yunkai1 .n_container:before{
        font-size: 60px;
    } 
    .yunkai1 h3 {
        font-size: 18px;
        padding: 25px 0;
    }
    .yunkai1_1 h3{
        padding: 25px 0 25px 58px;
    }
    .yunkai1_ul1 li{
        width: 80px;
        height: 80px;
        margin:0 2px;
    } 
    .yunkai1_ul1 li .img {
        padding-top: 10px;
    }
    .yunkai1_ul1 li .img img{
        max-width: 30px;
    }
    .yunkai1_ul1 li h4{
        font-size: 16px;
    }
    .yunkai1_ul2 {
        padding-top: 20px;
        margin-top: 25px;
    }
    .yunkai1_ul2 li{
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .yunkai1_ul2 li p{
        height: calc(6em + 30px);
    }
    .yunkai2{
        padding-top: 15px;
    }
    .yunkai2_2{
        padding:30px 0;
    }
    .yunkai2 h2{
        font-size: 26px;
    }
    .yunkai2_2 h2{
        font-size: 26px;
    }
    .yunkai2_3 h2{
        font-size: 26px;
    }
    .yunkai2 .n_container:before{
        font-size: 60px;
    }
    .yunkai2 h3{
        font-size: 22px;
        margin: 30px 0 20px;
    }
    .gkk_ys{
        margin-bottom: 30px;
    }
    .gkk_ys li h4{
        font-size: 18px;
        margin-bottom: 15px;
    }
    .yunkai2_2 ul li{
        max-width: 100%;
        width: 100%;
    }
    .yunkai2_2 ul li:nth-child(2) {
        margin: 20px 0px;
    }    
    .yunkai2_2 ul li p{
        text-align:center;
    }
    .yunkai2_3 {
        padding: 30px 0;
    }
    .kczx p{
        font-size: 14px;
        padding: 0 5px 0 20px!important;
        line-height:42px;
        height: 42px;
    }
    .kczx p:before {
        left: 10px!important;
    }
    .kczx p:nth-child(2){
        display: none;
    }
    .kczx_list li p{
        padding:0 5px 0 10px!important;
        font-size: 14px;
    }
    .kczx_list li p:nth-child(2){
        display: none;
    }
    .kczx p:nth-child(1) {
        width: 40%;
    }
    .kczx p:nth-child(3) {
        width: 30%;
    }
    .kczx p:nth-child(4) {
        width: 30%;
    }
    .kczx_list li p:nth-child(1) {
        width: 40%;
    }
    .kczx_list li p:nth-child(3) {
        width: 30%;
    }
    .kczx_list li p:nth-child(4) {
        width: 30%;
    }
    .holder {
        margin-top: 20px;
    }

    .yunkai3 {
        padding: 30px 0 30px;
    }
    .yunkai2 h2{
        font-size: 24px;
    }
    .yunkai3_2{
        padding:30px 0 0;
    }
    .yunkai3_2 h2{
        font-size: 24px;
        padding-bottom: 25px;
    }
    .yunkai3_2 h2 span,.yunkai3_3 h2 span{
        top: 2px;
        height: 20px;
        margin-right: 10px;
    }
    .yunkai3_3 h2{
        font-size: 24px;
        padding-bottom: 20px;        
    }

    .yunkai3_2 ul{
        width: 100%;
    }
    .yunkai3_2 ul li .text1 h3{
        font-size: 16px;
    }
    .yunkai3_2 ul li{
        width: 33.3333%!important;
        padding:25px 0;
        height: 180px;
    }
    .yunkai3_2 ul li .text1{
        padding:0 5px;
        height: 130px;
    }
    .yunkai3_2 ul li .text1 h4{
        font-size: 12px;
    }
    .yunkai3_2 ul li .text2{
        display: none;
    }
    .yunkai3_3 {
        padding: 30px 0;
    }
    .yunkai1_2 h2, .yunkai1_3 h2{
        font-size:24px;
    }
    .yunkai1_ul3{
        margin-top:20px;
    }
    .yunkai1_ul3 li{
        width:40%;
        margin-bottom:10px;
    }
    .yunkai1_ul3{
        flex-wrap:wrap;
        margin-top: 20px;
    }
    .yunkai1_ul3 .jia{
        width:10%;
    }
    .yunkai1_2{
        padding:0 0 30px;
    }
    .yunkai1_1 h3{
        font-size:16px;
        background: url(../images/icon8.png) no-repeat left 25px;
    }
    .yunkai1_3{
        padding:30px 0 25px;
    }
    .yunkai1_ul4{
        margin-top:50px;
    }
    .yunkai1_ul4 li{
        margin:0 2% 25px;
        width:46%;
    }
    .shili3_list li {
        width: 48%;
        margin: 2% 1%;
    }
    .shili3_list li .sl3_ti{
        line-height:40px;
    }
    .shili3_list li .text h3{
        font-size: 14px;
    }
    .shili3_list li .text p{
        font-size: 12px;
    }
    .shili3_list li .xs .text2 {
        padding: 5px 3px 10px;
        font-size: 12px;
    }    
    .shili3_list li .xs .text2 h3{
        font-size:16px;
    }
    .shili3_list li .xs .text2 p{
        font-size:12px;
    }
}



/*job*/
.job1{
    margin-bottom: 40px;
    margin-top: 20px;
}
.job1 .n_container{
    padding:50px 35px 75px;
    border:1px solid #e5e5e5;
}
@media(max-width: 1600px){

}
@media(max-width: 1440px){
    
}
@media(max-width: 1360px){
    
}
@media(max-width: 1199px){
    
}
@media(max-width: 992px){
    
}
@media(max-width: 768px){
    
}
@media(max-width: 767px){
    
}



/*shequ*/

.serwy-swiper{
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 95px;
}
.serwy-list{
    width: 100%;height: 0;visibility:hidden;overflow: hidden;

}
.serwy-list.ontrue{height: auto;visibility: visible;}
.serwy-link{display: block;width: 100%;}
.serwy-img{width: 100%;overflow: hidden;border-radius: 4px;}
.serwy-img img{width: 100%;object-fit: cover;transition: all 1s ease;}
.serwy-words{width: 100%;overflow: hidden;padding: 30px 16px;text-align: center;}
.serwy-words p{font-size: 16px;color: #333;transition: all .4s ease;}
.serwy-list p{
    font-size: 16px;
    line-height:1em;
    padding:25px 0 0;
    text-align:center;
    color: #333;
}
.serwy-link:hover .serwy-img img{transform: scale(1.06);}
.serwy-link:hover .serwy-words p{
    color: #d4a95b;
}
.serwy-swiper .slick-for{margin: 0 -252px;
    padding-bottom: 130px;
}
.serwy-swiper .serwy-slide{margin: 0 25px;outline:none;}
.serwy-swiper .slick-dots{
    display: none!important;
    position: absolute;left: 0;right: 0;bottom: 10px;text-align: center;font-size: 0;}
.serwy-swiper li{display: inline-block;}
.serwy-swiper .slick-dots li button {width: 58px;height: 58px;border: 0;font-size: 0;background-color: #999;cursor: pointer;}
.serwy-swiper .slick-dots li.slick-active button {background-color: #d0a864;}

.serwy-list .slick-arrow{
    position: absolute;
    font-size: 0;
    bottom: 0%;
    z-index: 10;
    width: 58px;
    height: 58px;
    display: block;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    background-color: #999999;
    transition: all .4s ease;
    border: none;
    outline: none;
    top:calc(100% - 58px)!important;
}
.serwy-list .slick-prev{
    left: 50%;
    margin-left: -65px;
    background-image: url('../images/left4.png');

}
.serwy-list .slick-next{
    right: 50%;
    margin-right: -65px;
    background-image: url('../images/right4.png');
}
.serwy-list .slick-prev:hover{background-color: #d0a864;}
.serwy-list .slick-next:hover{background-color: #d0a864;}

.shequ2{

}
.shequ2 .n_container{
    padding:85px 0 65px;
    border-top:1px solid #e5e5e5;
}
.shequ2 h2 {
    font-size: 36px;
    color: #c8a063;
    font-weight: normal;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.shequ2 h2:before{
    content: 'Union';
    position: absolute;
    right: 0;
    top: -5px;
    font-size: 190px;
    line-height: 1em;
    color: #f7f4f5;
    z-index: -1;
    font-family: 'Arial';
    font-weight: bold;

}
.shequ2 .text1{
    font-size: 15px;
    color: #666;
}
.shequ2 .text1 p strong{
    font-size: 18px;
    color: #000;
/*    font-weight: normal;*/
    padding-left: 30px;
    display: block;
    position: relative;
    margin-top: 20px;
}
.shequ2 .text1 p strong:after{
    content:'';
    position: absolute;
    top:50%;
    margin-top:-3px;
    left:10px;
    width: 6px;
    height: 6px;
    background:#d0a864;
}


.pxzlm{
    width: 100%;
}
.servebrand{
    width: 1450px;
/*    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;*/
    float: right;
    padding: 0px 0 130px;
}
.serwy-menu{
    margin-bottom: 32px;
}
.serwy-menu ul{
    text-align:right;
}
.serwy-menu ul li{
    display: inline-block;
    font-size: 18px;
    color: #000;
    height: 50px;
    line-height: 50px;
    position: relative;
    margin-left: 34px;
    cursor: pointer;
    user-select: none;
    transition: all .4s ease;
}
.serwy-menu ul li:after{content: "";width: 0;position: absolute;right: 0;bottom: 0;height: 2px;background: #d0a864;transition: all .4s ease;}
.serwy-menu ul li:hover, .serwy-menu ul li.ontrue{color: #d0a864;}
.serwy-menu ul li:hover:after, .serwy-menu ul li.ontrue:after{width: 100%;right: auto;left: 0;}

.servebrand-swiper{width: 100%;overflow: hidden;position: relative;}
.servebrand-pic{width: 100%;float: left;overflow: hidden;}
.servebrand-pic img{max-width: 100%;object-fit: cover;max-height: 516px;}
.servebrand-swiper .swiper-slide-active.swiper-slide {width: 68.4% !important;}
.servebrand-swiper .swiper-slide-prev .servebrand-pic img{
    min-height: 516px;
}
.servebrand-swiper .swiper-slide-next .servebrand-pic img{
    min-height: 516px;
}
.servebrand-next{position: absolute;background: #fff;z-index: 4;width: 180px;height: 100%;top: 0;left: 68.4%;}
.servebrand-next i{
    width: 58px;
    height: 58px;
    margin-top: -29px;
    margin-left: -29px;
    border: 1px solid #c8a063;
    background: url('../images/right4.png') no-repeat center #c8a063;
    position: absolute;
    left: 50%;
    top: 50%;
    cursor: pointer;
    transition: all .4s ease;
    border-radius: 5px;
}
/*.servebrand-next i:hover{border-color: #d4aa5a;background: #d4aa5a url('../images/gather/serveArrH.png') no-repeat center;}*/
.servebrand-swiper .swiper-slide{position: static;}
.servebrand-li{
    position: absolute;width: 21.9%;height: 100%;
    background: #96938e;top: 0;left: 46.4%;
    z-index: 4;overflow: hidden;
}
.servebrand-li li{width: 100%;display: none;}
.servebrand-li li.ontrue{display: block;}
.servebrand-words{width: 100%;padding: 80px 38px 0;}
.servebrand-words h5{
    font-size: 26px;
    line-height:1.6em;
    color: #fff;
    opacity: 0;
    font-weight: normal;
}

.servebrand-words p{
    font-size: 16px;
    color: #fff;
    line-height: 32px;
    margin-top: 42px;
    opacity: 0;
    padding:0;
    text-align: left;
}
.servebrand-li li.ontrue .servebrand-words h5{animation: servebrandCt 1s ease both;}
.servebrand-li li.ontrue .servebrand-words h6{animation: servebrandCt 1s ease both 200ms;}
.servebrand-li li.ontrue .servebrand-words p{animation: servebrandCt 1s ease both 300ms;}
@keyframes servebrandCt{0%{opacity: 0;transform: translateX(120px);}100%{opacity: 1;transform: translateX(0px);}}


#shequ3{
    padding:0;
}
#shequ3 .n_container{
    padding:95px 0 0;
    border-top:1px solid #e5e5e5;
}
#shequ3 .n_container:before{
    content: 'Union';
    top:95px;
}
.tab1li{
    margin-top:50px;
}
.tab1li ul{

}
.tab1li ul li{
    float: left;
    padding:15px 60px;
    text-align:center;
    border:1px solid #fff;
    position: relative;
}
.tab1li ul li .img{
    margin:0 auto;
    width: 62px;
    height: 49px;
    text-align: center;
}
.tab1li ul li .img img{
    
}
.tab1li ul li p{
    font-size: 18px;
    color: #333;
}
.tab1li ul li.cur{
    border:1px solid #c8a063;
    border-bottom: none;
}
.tab1li ul li.cur:before{
    content:'';
    width: 100%;
    height: 1px;
    background:#fff;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 9;
}
.tab1{
    display: none;
    border:1px solid #c8a063;
    padding:25px 40px;
    font-size: 16px;
    color: #666666;
    position: relative;
    top: -1px;
}
.jy-serwy-swiper{
    /*margin:80px 0 115px;*/
}
.jy-serwy-swiper .serwy-img{
    border-radius: 10px;
    overflow: hidden;
}
.jy-serwy-swiper .serwy-slide{
    margin: 0 20px;
}

.shequtab{
    position: relative;
    height: 510px;
    width: 100%;
    margin: 80px 0 115px;
    overflow: hidden;
}
.shequtab .tab2{
    z-index: -1;
    position: absolute;
    left:0;
    top:0;
    opacity: 0;
    margin:0!important;
}
.shequtab .tab2.on{
    opacity: 1;
    z-index: 999;
}
.shequtab .serwy-swiper .slick-for{
    padding-bottom: 0;
}
.shequtab .slick-list,.shequtab .slick-track{
    max-height:510px;
}
#shequ4{
    padding:0;
}
#shequ4 .n_container{
    padding:105px 0 0;
    border-top:1px solid #e5e5e5;
}
#shequ4 .n_container:before{
    content: 'Union';
    top:105px;
}
.shequ3_content{
    padding:80px 0 85px;
}
.shequ3_content h4{
    font-size: 20px;
    font-weight: normal;
    padding-left;
    position: relative;
    margin-bottom: 18px;
    padding-left: 20px;
}
.shequ3_content h4:before{
    content:'';
    width: 5px;
    height: 5px;
    background:#dbb065;
    position: absolute;
    left:0;
    top:50%;
    margin-top:-2.5px;
}
.shequ3_content p{

}
.shequ3_content_l{
    background: #f9f9f9;
    padding:35px 28px 45px 28px;
    width: 45%;
    float: left;
}
.shequ3_content_r{
    background: #f9f9f9;  
    padding:35px 28px 45px 28px;
    width: 45%;
    float: right;  
}
@media(max-width: 1600px){
    .serwy-swiper{
        margin-bottom:60px;
    }
    .shequ2 .n_container {
        padding: 60px 0;
    }
    .servebrand {
        width: 100%;
        float: none;
        padding: 0px 0 60px;
    }
    .servebrand-words {
        padding: 50px 25px 0;
    }
    .servebrand-words h5{
        font-size: 22px;
    }
    .servebrand-words p{
        margin-top: 20px;
        padding: 0px 0 0;
    }
    #shequ3 .n_container{
        padding:60px 0 0;
    }
    #shequ4 .n_container{
        padding:60px 0 0;
    }
    .servebrand-pic img {
        max-height: 460px;
    }
    .servebrand-swiper .swiper-slide-next .servebrand-pic img {
        min-height: 460px;
    }
    .servebrand-swiper .swiper-slide-prev .servebrand-pic img {
        min-height: 460px;
    }
/*    .servebrand-li{
        max-height: 460px;
    }*/
.shequtab{
    height:460px;
    margin: 50px 0;
}
.shequtab .slick-list,.shequtab .slick-track{
    max-height:460px;
}

}
@media(max-width: 1440px){
    .servebrand-pic img {
        max-height: 420px;
    }    
    .servebrand-swiper .swiper-slide-next .servebrand-pic img {
        min-height: 420px;
    }
    .servebrand-swiper .swiper-slide-prev .servebrand-pic img {
        min-height: 420px;
    }
/*    .servebrand-li{
        max-height: 420px;
    }*/
    .shequ2 h2:before{
        font-size: 150px;
    }
    .shequtab{
        height:420px;
        margin: 50px 0;
    }
    .shequtab .slick-list,.shequtab .slick-track{
        max-height:420px;
    }
}
@media(max-width: 1360px){
    .servebrand-pic img {
        max-height: 380px;
    } 
    .servebrand-swiper .swiper-slide-next .servebrand-pic img {
        min-height: 380px;
    } 
    .servebrand-swiper .swiper-slide-prev .servebrand-pic img {
        min-height: 380px;
    }
/*    .servebrand-li{
        max-height: 380px;
    }*/
    .shequtab{
        /*height:380px;*/
        margin: 50px 0;
    }
    .shequtab .serwy-swiper .slick-for{
        padding-bottom:80px;
    }
    .shequtab .slick-list,.shequtab .slick-track{
        /*max-height:380px;*/
    }
}
@media(max-width: 1199px){
    .servebrand-words {
        padding: 20px 12px;
    }    
    .servebrand-words h5{
        font-size: 16px;
    }
    .servebrand-words p{
        font-size: 14px;
        margin-top: 10px;
    }
    .servebrand-li{
        width: 27%;
        left: 41.5%;
    }
    .servebrand-next {
        width: 80px;
        left: 69.4%;
    }
    .servebrand-pic img {
        max-height: 360px;
    }
    .servebrand-swiper .swiper-slide-next .servebrand-pic img{
        min-height: 360px;
    }
    .servebrand-swiper .swiper-slide-prev .servebrand-pic img {
        min-height: 360px;
    }
/*    .servebrand-li{
        max-height: 360px;
    }*/
    .servebrand-next i {
        width: 48px;
        height: 48px;
        margin-top: -24px;
        margin-left: -24px;
    }
    .tab1{
        padding: 15px 20px;
        font-size: 14px;
    }
    .yunkai2 p{
        font-size: 14px;
    }
    .shequ2 h2{
        font-size: 32px;
    }
    .shequ2 .text1{
        font-size: 14px;
    }
    .shequ2 .text1 p strong{
        font-size: 16px;
    }
    .shequ3_content_l {
        padding: 25px 20px;
        width: 48%;
    }
    .shequ3_content_r{
        padding: 25px 20px;
        width: 48%;  
    }
    .shequ3_content {
        padding: 50px 0;
    }
    .serwy-swiper .slick-for{
        padding-bottom: 100px;
    }
    .serwy-lists2 .slick-list{
        max-height: 300px;
    }
}
@media(max-width: 992px){
    
}
@media(max-width: 768px){
    .yunkai3 {
        padding: 30px 0 20px;
    } 
    .serwy-swiper {
        margin-bottom: 30px;
        margin-top:30px;
    }   
    .shequ2 .n_container {
        padding: 30px 0;
    }
    .shequ2 h2 {
        font-size: 28px;
    }
    .shequ2 .text1 p strong{
        margin-top: 10px;
    }
    .servebrand-words p{
        line-height:28px;
    }
    .servebrand{
        padding: 0px 0 30px;
    }
    #shequ3 .n_container {
        padding: 30px 0 0;
    }
    .serwy-lists2 .slick-list {
        max-height: 260px;
    }
    .serwy-list .slick-arrow{
        width: 46px;
        height: 46px;

    }
    .serwy-list .slick-prev{
        margin-left: -50px;
    }
    .serwy-list .slick-next{
        margin-right: -50px;
    }
    #shequ4 .n_container {
        padding: 30px 0 0;
    }
    #shequ3 .n_container:before,#shequ4 .n_container:before{
        top:75px;
    }
    .shequ2 h2:before{
        font-size: 120px;
    }
    .serwy-menu ul{
        text-align:left;
    }
    .serwy-menu ul li{
        font-size: 16px;
        margin-left: 12px;
    }
    .serwy-menu ul li:first-child{
        margin-left: 0;
    }
    .shequtab{
        height:350px;
    }
    .shequtab .slick-list, .shequtab .slick-track{
        max-height:260px;
    }
}
@media(max-width: 767px){
    .serwy-swiper .slick-for {
        padding-bottom: 80px;
    }   
    .shequ2 h2:before{
        font-size: 80px;
    }
    .servebrand-li {
        position: static;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        overflow: hidden;
        margin-top: 12px;
    }
    .servebrand-li li.ontrue .servebrand-words p{
        text-align:left;
    }
    .servebrand-pic img {
        max-height: 180px;
    }
    .servebrand-swiper .swiper-slide-next .servebrand-pic img{
        min-height: 180px;
    }
    .servebrand-swiper .swiper-slide-prev .servebrand-pic img {
        min-height: 180px;
    }
    .servebrand-next {
        width: 70px;
        left: 63.4%;
    }
    .tab1li ul li{
        padding: 10px 15px;
    }
    .tab1li ul li p{
        font-size: 16px;
        padding-top:5px;
    }
    .tab1 {
        padding: 10px 12px;
    }
    .serwy-lists2 .slick-list {
        max-height: 240px;
    }
    .serwy-list p{
        padding:15px 0 0;
    }
    .shequ3_content {
        padding: 30px 0;
    }
    .shequ3_content_l {
        padding: 15px 10px;
        width: 100%;
        float: none;
    }
    .shequ3_content_r {
        padding: 15px 10px;
        width: 100%;
        float: none;
        margin-top: 10px;
    }
    .shequ3_content h4{
        font-size: 16px;
        padding-left: 15px;
    }
}


/*news*/
.n_cont{
    margin:70px auto 130px;
}
.news-list{
/*    width: 1440px;
    margin: 0 auto;*/
    overflow: hidden;
    padding: 0 0 30px 0;
    border-bottom: 1px solid #eee;
}
.news-list ul li{
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.newsL{
    width: 16%;
    overflow: hidden;
    padding: 30px 0 0 0;
    float: left;
}
.newsL i{
    width: 56px;
    height: 1px;
    background-color: #c3c3c3;
    display: block;
    float: left;
    margin-top: 18px;
    transition: all .6s ease;
}
.newsL-data{
    float: left;
    text-align: right;
    margin-left: 24px;
    transition: all .6s ease;
}
.newsL-data h6{font-size: 30px;color: #888;}
.newsL-data p{font-size: 18px;color: #888;margin-top: 4px;}

.news-list ul li:hover .newsL i{width: 66px;}

.newsC{
    width: 60.5%;
    overflow: hidden;
    padding: 30px 30px 0 0;
    float: left;
    box-sizing: border-box;
    border-top: 1px solid #eee;
}
.newsC h4{font-size: 22px;color: #333;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
.newsC p{font-size: 14px;color: #666;line-height: 24px;height: 48px;margin-top: 20px;overflow: hidden;display: -webkit-box;text-overflow: ellipsis;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.newsC h4:hover{color: #000;}
.newsC a{
    display: block;
}
.newsC h5{
    width: 115px;
    height: 40px;
    border: 1px solid #b2b2a8;
    font-size: 16px;
    color: #b2b2a8;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    margin-top: 28px;
    position: relative;
    transition: all .6s;
    border-radius: 25px;
    font-weight: normal;
    overflow: hidden;
}
.newsC h5:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: all .6s;
    background-color: #c8a063;
}
.newsC h5:hover:after{
    width: 100%;
}
.newsC h5:hover{
    color: #fff;
    border: 1px solid #c8a063;
}


.newsR{
    width: 23.5%;
    height: 216px;
    overflow: hidden;
    float: left;
}
.newsR img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s ease;
}
.news-list ul li:hover .newsR img {transform: scale(1.1);}

@media(max-width: 1600px){
    .newsL{
        padding: 20px 0 0 0;
    }
    .newsL i{
        width: 35px;
    }
    .news-list ul li:hover .newsL i{
        width: 50px;
    }
    .newsL-data{
        margin-left: 15px;
    }
    .newsL-data h6{
        font-size: 26px;
    }
    .newsL-data p{
        font-size: 16px;
    }
    .newsC{
        padding: 20px 15px;
    }
    .n_cont {
        margin: 50px auto 50px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1360px){
    
}
@media(max-width: 1199px){

    .newsL{
        padding: 15px 0 0 0;
    }
    .newsL i{
        margin-top: 12px;
    }
    .news-list ul li:hover .newsL i{
        width: 30px;
    }
    .newsL-data h6{
        font-size: 24px;
    }
    .newsL-data p{
        font-size: 14px;
    }  
    .newsC{
        padding: 15px 10px;
    }  
}
@media(max-width: 992px){
    .newsL{
        display: none;
    }
    .newsC {
        width: 70%;
        padding: 8px 16px 0 0;
    }
    .newsR {
        width: 30%;
        height: 120px;
    }
    .newsC h5{
        width: 120px;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
        margin-top: 12px;
        border-radius: 0;
    }
    .newsC h5{
        font-size: 15px;
    }
}
@media(max-width: 768px){
    .newsL-data h6 {
        font-size: 20px;
    }    
    .newsC h4{
        font-size: 20px;
    }
    .n_cont {
        margin: 10px auto 30px;
    }
    .news-list ul li{
        margin-top: 15px;
    }
}
@media(max-width: 767px){
    .newsC{
        width: 100%;
        float: none;
        padding:8px 5px;
    }
    .newsC h4{
        font-size:18px;
    }
    .newsC h5{
        width: 80px;
        font-size: 14px;
        margin-top: 10px;
    }
    .newsR {
        width: 100%;
        height: 100%;
        float: none;
    }
    .n_cont {
        margin: 0px auto 15px;
    }
}


h2.title2{
    font-size: 36px;
    color: #000;
    font-weight: normal;
    line-height:1em;
    margin-bottom: 20px;
}
h2.title2 span{
    display: inline-block;
    width: 12px;
    height: 32px;
    background:#d0a864;
    margin-right: 18px;
    position: relative;
    top:4px;
}
.job_text1{
    font-size: 15px;
    color: #666;
}
.job1 a{
    display: block;
    width: 144px;
    line-height:42px;
    height: 42px;
    background:#d0a864;
    border-radius: 35px;
    font-size: 15px;
    color: #fff;
    text-align:center;
    margin-top:65px;
}
.job2{
    margin-bottom: 90px;
}
.job2 .n_container{
    padding:50px 35px 60px;
    border:1px solid #e5e5e5;
}
.job_img{
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
.job_img p{
    width: 32%;
    margin-right: 2%;
    margin-bottom: 18px;
    overflow: hidden;
}
.job_img p:nth-child(3n){
    margin-right: 0;
}
.job_img p img{
    transition: all 0.6s ease-out;
}
.job_img p:hover img{
    transition: all 0.6s;
    transform: scale(1.1);
}
@media(max-width: 1600px){
    h2.title2{
        font-size: 32px;
    }
    .job1 .n_container,.job2 .n_container{
        padding: 30px 20px;
    }
    .job1 a{
        margin-top: 30px;
    }
}
@media(max-width: 1440px){
    
}
@media(max-width: 1360px){
    h2.title2{
        font-size: 28px;
    }    
}
@media(max-width: 1199px){
    .job_text1{
        font-size: 14px;
    }    
}
@media(max-width: 992px){
    h2.title2{
        font-size: 26px;
    }   
    h2.title2 span{
        width: 8px;
        height: 26px;
        margin-right: 12px;
        top: 3px;        
    }   

}
@media(max-width: 768px){
    .job1{
        margin-bottom:20px;
    }
    .job1 .n_container,.job2 .n_container{
        padding: 20px 15px;
    }  
    .job2{
        margin-bottom:30px;
    }  
}
@media(max-width: 767px){
    h2.title2{
        font-size: 24px;
        margin-bottom: 10px;
    }  
    .job1 a{
        margin-top: 20px;
        width: 120px;
        line-height:36px;
        font-size: 14px;
        height: 36px;
    }    
    .job_img{
        margin-top: 20px;
    }

}

.news_detail .content{
    font-size: 16px;
}
.news_detail video{
    max-width: 100%;
}
.news_detail .content table{
    
}
.news_detail .content table tr{
    border-top:1px solid #e5e5e5;
    border-left:1px solid #e5e5e5;
}
.news_detail .content table tr td{
    border-right:1px solid #e5e5e5;
    border-bottom:1px solid #e5e5e5; 
    text-align: center;
}
@media(max-width: 767px){
    .news_detail .content{
        font-size: 14px;
    }    
}


h1.title{
    font-size: 36px;
    color: #222;
    text-align: center;
    line-height:1em;
    padding:40px 0 15px 0;
/*    font-weight: normal;*/
}
.info_title{
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-bottom: 40px;
}
h3.tag{
    font-size: 14px;
    color: #666;
    font-weight: normal;
}
.page{
    font-size: 14px;
    color: #666;  
    padding:30px 0;  
}
.page p{
    float: left;
    font-size: 16px;
    color: #333;
}
.page p:nth-child(2){
    float: right;
}
.page a{
    font-size: 14px;
    color: #666;    
}
.page span{
    font-size: 14px;
    color: #666;    
}
.content{
    padding-bottom: 30px;
}

@media(max-width: 768px){
    h1.title{
        font-size: 18px;
        padding:15px 0 5px 0;
        line-height: 1.4em;
    }
    .info_title{
        padding-bottom: 15px;
    }
    .page{
        padding: 15px 0;
    }
    .page p{
        float: none;
    }
    .page p:nth-child(2){
        float: none;
    }
    .content{
        padding-bottom: 15px;
    }
}
@media(max-width: 767px){
    .info_title{
        padding-bottom: 10px;
    }
    .content{
        padding-bottom: 5px;
    }
}


.pageController{
    text-align: center;
    color:#505050;margin:0 auto;
    margin:2em 0;
    line-height:24px;
}
.pageController a{background-color:#FFF;vertical-align:middle; border:#efefef 1px solid; 
    color:#505050;padding:5px 8px; margin-right:3px;margin-left:3px;
}
.pageController a:hover{background-color:#2b70bb;color:#fff; text-decoration:none;border:#efefef 1px solid;}
.pageController .currPage {background-color: #2b70bb;color:#ff0000;border:#efefef 1px solid;}
.pageController .t1{
    float:left;margin-right:5px;height:24px;line-height:22px;white-space:nowrap;
    display: none;
}
.pageController .t2{vertical-align:middle;line-height:39px;}
.pageController .t2 #current{
    line-height: 39px;
    background-color: #ef8200;
    vertical-align: middle;
    border: 1px solid #ef8200; 
    color: #fff;padding: 5px 8px;
    margin-right: 3px;
    margin-left: 3px;
    width: 39px;
}
.pageController .t1 span{
    /*padding-left:4px;
    padding-right:4px;*/
    width: 39px;
}
.pageController select{height:24px;vertical-align:middle;text-align:center;line-height:24px;
    display: none;
}
.pageController select option{vertical-align:middle;}


.m_f_fixed{
    position: fixed;
    bottom:0;
    left:0;
    background: #c8a063;
    color: #fff;
    z-index:9999;
    justify-content: center;
    width: 100%;
    display:none;

}
.m_f_fixed a{
    flex:1;
    font-size: 16px;
    color: #fff;
    display: block;
    text-align: center;
    padding:10px 0;
}
.m_f_fixed a img{
    width: 25px;
    display: block;
    margin:0 auto 0px;
}
#gotop{
    position: fixed;
    right: 0;
    bottom: 30px;
    cursor: pointer;
}
@media(max-width: 1199px){
    #gotop{
        display: none;
    }
}
@media(max-width:640px){
    /*.m_f_fixed{*/
    /*    display: flex;*/
    /*}*/
    /*footer{*/
    /*    margin-bottom:70px;*/
    /*}*/
}


@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */

    .Container-wrapper{margin-top: 60px;padding-left: 0;}
    .Header-wrapper {width: 100%;height: 60px;background: #fff;}
    .Header-wrapper:after{top: auto;right: auto;bottom: 0;left: 0;width: 100%;height: 1px;}
    .Header-logo{width: auto;float: left;margin-top: 0;height: 60px;line-height: 60px;}
    .Header-logo img{width: 78px;}
    .Header-container{padding: 0 4%;text-align: left;}
    .Header-logopc{display: none;}
    .Header-logomb{display: block;}
    .Header-navclick{display: block;}
    .Header-navbar{display: none;top: 60px;z-index: 9999;background: #fff;padding: 10px 0 16px;transition: all 0s ease;height: auto;}
    .Header-sunmenu {position: static;width: 100%;height: auto;z-index: 2;padding-top: 0;margin-top: 0;display: none;transition: all 0s ease;}
    .Header-menu:before,.Header-menu:after,.Header-navbar ul li:after{display: none;}
    .Header-menu{padding: 0 4%;}
    .Header-sunmenu a {padding: 0 4%;}
    .Header-menu span{padding: 0 4%;}
    .Header-sunclick{display: block;width: 36px;height: 36px;z-index: 16;position: absolute;transform: rotate(90deg);top: 0;right: 0;background: url('../images/public/arrH.png') no-repeat center;}
    .Header-sunclick.ontrue{transform: rotate(-90deg);}
    .Header-navbar ul li:hover .Header-menu{color: #333;}
    .Header-navbar ul li:hover .Header-menu span{opacity: 0;}
    .Header-navbar ul li:hover .Header-menu b{opacity: 1;}
    .Header-menu:hover{color: #d4aa5a !important;}
    .Header-menu:hover span{opacity: 1 !important;}
    .Header-menu:hover b{opacity: 0 !important;}
    .Footer-logo{width: 100%;padding-top: 0;text-align: center;}
    .Footer-wrapper{padding-left: 0;}
    .Footer-container {padding: 42px 4% 0;}
    .Footer-menu{margin-left: 0;width: 100%;margin-top: 28px;}
    .Footer-rela{width: 100%;padding-top: 0;margin-top: 28px;}
    .Footer-rela h6 {margin-bottom: 10px;}
    .Footer-copy {padding: 28px 0 18px;text-align: center;}
    .banner-mouse{display: none;}
    .Header-langpc{display: none;}
    .Header-langmb{display: block;position: relative;float: right;width: auto;top: 0;bottom: auto;height: 60px;line-height: 60px;padding-left: 0;margin-right: 16px;font-size: 18px;}
}



.abotab{width: 100%;overflow: hidden;position: relative;}
.abotab-contain{width: 100%;}
.abotab-bg{width: 100%;}
.abotab-bg ul li{position: absolute;top: 0;left: 0;width: 100%;transition: transform 2.5s ease,opacity 1.5s;opacity: 0;transform: scale(1.1);}
.abotab-bg ul li.ontrue {opacity: 1;transform: matrix(1, 0, 0, 1, 0, 0);z-index: 2;}
.abotab-bg ul li img{width: 100%;object-fit: cover;}
.abotab-li{position: absolute;z-index: 4;width: 100%;height: 100%;}
.abotab-li ul{display: block;width: 100%;}
.abotab-li ul li{width: 20%;float: left;position: relative;transition: all .6s ease;}
.abotab-li ul li:after{content: "";width: 1px;height: 100%;background: #fff;opacity: .2;position: absolute;top: 0;right: 0;}
.abotab-li ul li:last-child:after{display: none;}
.abotab-lilink{display: block;position: relative;width: 100%;height: 100%;top: 0;left: 0;}
.abotab-lizz{position: absolute;width: 100%;top: 0;left: 0;height: 100%;background: #000;opacity: .36;transition: all .4s ease;}
.abotab-liwords{position: absolute;left: 0;width: 100%;bottom: 54px;text-align: center;z-index: 6;padding: 0 9%;transition: all .6s ease 300ms;}
.abotab-liic{width: 100%;}
.abotab-liic img{max-width: 100%;margin: 0 auto;}
.abotab-liicy{display: block;}
.abotab-liich{display: none;}
.abotab-liwords h5{font-size: 20px;color: #fff;margin-top: 20px;}
.abotab-liwords h6{font-size: 12px;color: #fff;text-transform: uppercase;margin-top: 12px;}
.abotab-liwords p{font-size: 15px;color: #fff;line-height: 30px;margin-top: 18px;overflow: hidden;height: 0;transition: all 0s ease 0ms;}
.abotab-liwords i{display: block;width: 40px;height: 40px;margin: 32px auto 0;border-radius: 50%;border: 1px solid #fff;background: url('../images/aboArr2.png') no-repeat center;transition: all .4s ease 340ms;}
.abotab-li ul.aboHover:hover li{width: 16%;}
.abotab-li ul.aboHover li:hover{width: 36%;}
.abotab-li ul li:hover .abotab-lizz{opacity: .24;}
.abotab-li ul li:hover .abotab-liwords{bottom: 40%;}
.abotab-li ul li:hover .abotab-liicy{display: none;}
.abotab-li ul li:hover .abotab-liich{display: block;}
.abotab-li ul li:hover .abotab-liwords i{background-color: #deba72;border-color: #deba72;}
.abotab-li ul li:hover .abotab-liwords p{height: 180px;transition: all .6s ease 360ms;}


@media all and (max-width:1279px) {
    /* 1152 × (864) */
    .abotab-liwords {bottom: 38px;}
    .abotab-li ul li:hover .abotab-liwords {bottom: 16%;}
    .abotab, .abotab-li ul li, .abotab-bg ul li img{height: 520px !important;}
    .abotab-li ul li:hover .abotab-liwords p {height: 180px;}
    .abotab-liwords h6{height: 26px;}
    .abotab-liwords p {margin-top: 4px;}
}

@media all and (max-width:1151px) {
    /* 1024 × (600/768) */
    /*.about {padding: 68px 0 60px;}*/
    /*.serve-contain{margin: 0 auto;float: none;}*/
    /*.serve-words {width: 100%;}*/
    /*.serve-img {width: 100%;margin-top: 40px;}*/
    /*.news-img{width: 100%;}*/
    /*.news-words {padding-left: 0;width: 100%;margin-top: 40px;}*/
    /*.news-alink {padding: 16px 0 14px;}*/
    /*.about-contain{width: 92%;}*/
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */
    .abotab-li ul.aboHover:hover li{width: 18.75%;}
    .abotab-li ul.aboHover li:hover{width: 25%;}
    .abotab-li ul li:hover .abotab-lizz{opacity: .24;}
    .abotab-li ul li:hover .abotab-liwords{bottom: 38px;}
    .abotab-li ul li:hover .abotab-liicy{display: none;}
    .abotab-li ul li:hover .abotab-liich{display: block;}
    .abotab-li ul li:hover .abotab-liwords i{background-color: #deba72;border-color: #deba72;}
    .abotab-liwords p{display: none;}
    .abotab-liwords h5{
        font-size:16px;
    }
    .abotab-liwords h6 {height: 36px;line-height: 18px;}
    .abotab, .abotab-li ul li, .abotab-bg ul li img{height: 420px !important;} 

}
@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
    .abotab-li ul li{width: 50%;}
    .abotab-li ul li:nth-child(2n):after{display: none;}
    .abotab, .abotab-bg ul li img{height: 500px !important;}
    .abotab-li ul li{height: 160px !important;}
    .abotab-li ul li:last-child{
        height:180px!important;
        width:100%;
    }
    .abotab-li ul li:last-child:before{
        content: "";
        width: 100%;
        height: 1px;
        background: #fff;
        opacity: .2;
        position: absolute;
        top: 0;
        left: 0;
    }
    .abotab-liwords{
        bottom:10px;
    }
    .abotab-liwords i{
        display:none;
    }

    .abotab-liic img{height: 48px;}
    .abotab-li ul.aboHover:hover li{width: 50%;}
    .abotab-li ul.aboHover li:hover{width: 50%;}
    .abotab-li ul li:first-child:before, .abotab-li ul li:nth-child(2):before{content: "";width: 100%;height: 1px;background: #fff;opacity: .2;position: absolute;bottom: 0;left: 0;}
    .abotab-liwords h5 {margin-top: 8px;font-size: 16px;}

}



